Hello,
I want to port blinky example to 52805.
I wrote this dts file:
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/dts-v1/;
#include <nordic/nrf52805_caaa.dtsi>
/ {
model = "button";
compatible = "nrf,button";
chosen {
zephyr,sram = &sram0;
zephyr,flash = &flash0;
zephyr,code-partition = &slot0_partition;
};
aliases {
led0 = &myled0;
};
leds {
compatible = "gpio-leds";
myled0: led_0 {
gpios = <&gpio0 16 GPIO_ACTIVE_LOW>;
I added "CONFIG_DEBUG=y" to prj.cong.
I launch debug but main function is never reached.
Here's the call stack in which the app is stuck:
I expect a misconfiguration but I'm unable to find which.
Any idea?
Thanks
Julien