The APDU class maintains a byte array buffer which is used to transfer incoming APDU header and data bytes as well as outgoing data. The buffer length must be at least 133 bytes ( 5 bytes of header and 128 bytes of data ).
I need the buffer read and store the data with length 200 bytes. But the APDU buffer only accepts the first 128 bytes of the data.
What can I do now to let the buffer accept the rest bytes of data?
What is the specific meaning of this sentence "The buffer length must be at least 133 bytes ( 5 bytes of header and 128 bytes of data )."? Hope someone help me out.