You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Easiest way is to get a single SPI.send command to transfer a big chunk of data...

    var sendData = new Uint8Array(256);
    sendData.fill(0);
    // now in the loop:
    var result = SPI2.send(sendData);
    // result will have 256 bytes in it
    
About

Avatar for Gordon @Gordon started