Hello,
I have a custom hardware around the nrf52820, and I simply can't make it to run the basic hello_world and blinky samples.
I'm compiling the samples using nrf52833dk_nrf52820 board, as the Zephyr documentation lists it to be possible to use this board to develop for the nrf52820. The only thing I really changed from the original files are the UART pins. The code compiles just fine, and for the hello_world sample (which I'm most interested in) I've included the necessary configurations for the outputs to go through UART:
CONFIG_SERIAL=y
CONFIG_SHELL=y
CONFIG_CONSOLE=y
west flash -r pyocd
&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
boot_partition: partition@0 {
label = "mcuboot";
reg = <0x00000000 0xC000>;
};
slot0_partition: partition@C000 {
label = "image-0";
reg = <0x0000C000 0x17000>;
};
slot1_partition: partition@23000 {
label = "image-1";
reg = <0x00023000 0x17000>;
};
storage_partition: partition@3a000 {
label = "storage";
reg = <0x0003a000 0x00006000>;
};
};
};