Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 10 months ago.
Send array over serial
Is there an easier way to send an entire array of bytes (not a string) other than putting serial.putc() in a loop?
1 Answer
9 years, 10 months ago.
DMA could be used, but thats not an easier method. Using putc is the easiest way. Puts (for strings, so wont work on binary data properly) also does the same internally.