There is no output to UART console when I set CONFIG_BT=y in prj.conf
peripheral_lbs sample project in ncs V2.0.2 can't printk anything.
There is no output to UART console when I set CONFIG_BT=y in prj.conf
peripheral_lbs sample project in ncs V2.0.2 can't printk anything.
Hi JC,
No, GPIO Forwarder is not available in NCS v1.9.1. For that SDK version, the forwarding of pins is done in the nrf5340_cpunet_reset.c file as you have discovered.
To take back the P1.01 pin that you need, in main() just call the same function but set the pin back to AppCore.
You won't have the CPUNET_UARTE_PIN_TX macro, so you can just use its explicit value of 33 or something like this.
#define GPIO_1_PIN_NUM_OFFSET 32 #define PIN_1_01 (GPIO_1_PIN_NUM_OFFSET + 1) soc_secure_gpio_pin_mcu_select(PIN_1_01, NRF_GPIO_PIN_MCUSEL_APP);
H JC,
Just want to let you know that I have verified the answer on this ticket and won't be informed of new reply. If you have further questions, please remember to open a new ticket.
Happy coding.
Hieu
Hello Hieu,
Interesting learning and debugging experience. Thanks again for your help.
JC