Affordable and flexible platform to ease prototyping using a STM32F303K8T6 microcontroller.
bug/problem serial2 PB_3/PB_4
Topic last updated
11 Feb 2019, by
Gianmarco Paduano.
3 replies
ScorpioCachan
#
08 Dec 2016
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:
- include "mbed.h"
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".
bastienvincke
#
30 Jun 2017
Hi,
The problem is still not fixed.
I have to use the 122rev to get serial2_rx (PA_3) to work.
Best regards
happening the same, gonna use the same rev as suggested,
thank you
Please log in to post a reply.
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".