Hi all,
I've got an issue with SerialX.begin(57600 or 115200) on my Olimexino STM32 board.
When I do the SerialX.begin() command, My terminal receives 0xFF!
Here my minimal test case :
void setup()
{
Serial2.begin(57600);
Serial2.write(0x42);
}
void loop()
{
}
I always receive "0xFF 0x42"...
So, I tried to look inside the the "begin" function and it seems the "gpio_set_mode(txi->gpio_device, txi->gpio_bit, GPIO_AF_OUTPUT_PP);" puts the line at low level few microseconds!
I am the only one with this problem ?