Replies: 1 comment
-
|
Hi @0x0fe The default state of the line is maybe linked to the default GPIO config: You can try to redefine it at sketch level replacing PinMap PinMap_UART_TX[] = {
{PD_8, USART3, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_PULLDOWN, GPIO_AF7_USART3)},
{NC, NP, 0}
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
So apparently setTxInvert does not change the idle state on STM32G4xx, (tested on G473VET6).
I would expect the idle stat to be low when setTxInvert is enabled. Is there another bit to change the idle state?
without setTxInvert

with setTxInvert

The specific port i used is PD8 and the baudrate is 8M
Beta Was this translation helpful? Give feedback.
All reactions