Initialize a buffer of unsigned integer of 8 bits full of zeros
txBuff=init_buff(_size)
Initialize a buffer of unsigned integer of 8 bits full of zeros
This rutine its a scilab macro. The buffer is a matrix of 1 rows and _size columns. Where _size can not exceed 64 because the HID transfer buffer has a max size of 64 bytes
n=5; txBuff=init_buff(n); disp(txBuff); | ![]() | ![]() |