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.
8 years, 5 months ago.
pc.printf problem
serial_test
#include "mbed.h"
Serial pc(USBTX, USBRX);
int main() {
int foo = 1;
while(foo<=50) {
pc.printf("Darryl %i\n", foo);
foo++;
wait(0.2);
}
}
Not carriage returning properly?