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.
hello There is a incompatibility for the serial2 with the new version of mbed Library. After the version 122:f9eeca106725 the serial link dont receive any characters.
Program used:
Serial bt(PB_3, PB_4);
int main() { int c;
bt.baud(115200);
bt.printf("Test BT\r\n");
while(1) { c = bt.getc(); bt.putc(c); } }
from the version number 123 we can't receive the conteint of the variable "c".