Hello,
I did some tests with the oscilloscope directly connected to pins 21 and 18 of the nrf52805.
The transmission on pin 18 by the Stm8l works perfectly. The problem I encounter now is that nrf52805 I have the pull up instruction on this pin
nrf_gpio_cfg_input(PIN_RXD,GPIO_PIN_CNF_PULL_Pullup);
but nothing happens when oscilloscopes.
#define UARTE_BASE 0x40002000 #define PORTA_UARTE ((NRF_UARTE_Type *) UARTE_BASE ) #define PIN_TXD 21 #define PIN_RXD 18
or the pull up configuration of pin 18, set as input and pin 21 as output?
nrf_gpio_cfg_input(PIN_RXD,GPIO_PIN_CNF_PULL_Pullup);
nrf_gpio_cfg_output(PIN_TXD);