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.
6 years, 7 months ago.
Problem with Seeduino Arch Pro Serial
Hello, I am using a Mac to program an ArchPro board via mbed. I used some code I wrote for USB serial communication to flash the board but I think it's blocked (the orange CDC LED is flashing) and I cannot re-flash it with a new program. How can I solve this ?
Here is the code that I think blocked the ArchPro:
- include "mbed.h" Serial pc(USBTX, USBRX);
int main (void) { while (1) { pc.printf("Hello, World!\n"); } }