Apex_mbed
(John Miller)
1
I want to use B96B-F446VE or the device STM32F446VET6. I would like to know which are the default USBRX (SERIAL_RX) and USBTX (SERIAL_TX) pins.
You can find that info in PinNames.h.
Looks like TX is PC_10
and RX is PC_11
.
Apex_mbed
(John Miller)
3
That’s the else condition. What is “MBED_CONF_TARGET_STDIO_UART_TX” if “MBED_CONF_TARGET_STDIO_UART_TX=TRUE”?
I think MBED_CONF_TARGET_STDIO_UART_TX
is false
unless you define it. So, the app uses the default pin. See the "config":
section in the link below.
You can override the default configuration with mbed_app.json file.
https://os.mbed.com/docs/mbed-os/v5.11/reference/configuration.html
Apex_mbed
(John Miller)
5
Many thanks for the prompt and clear answer.