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.
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
recently i test the serial test program (port i am using is p13,p14) . the program is work fine for transmission for different baud rate's but while come to the receiving the program return some garbage values i think that cause due to framing error baud rate mismatch ( tried the program in normal receive and interrupt receive both the cases i get the same error ) can any one plz help me
#include "mbed.h"
Serial pc(p13,p14);
int main() {
// char string[50];
pc.printf("HI WELCOME ");
while(1)
{
pc.putc(pc.getc());
}
}