boards: Add alias to boards with watchdog enabled
Add alias to boards with watchdog enabled to facilitate the move of samples/drivers/watchdog to use DT_ALIAS. Signed-off-by: Benjamin Björnsson <benjamin.bjornsson@gmail.com>
This commit is contained in:
parent
42154a9dbd
commit
ab4a926c27
162 changed files with 213 additions and 0 deletions
|
@ -19,6 +19,10 @@
|
||||||
zephyr,sram = &sram0;
|
zephyr,sram = &sram0;
|
||||||
zephyr,flash = &flash0;
|
zephyr,flash = &flash0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdt0;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&gpiote {
|
&gpiote {
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
led1 = &led1;
|
led1 = &led1;
|
||||||
bt = &led1;
|
bt = &led1;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
bootloader-led0 = &green_pwm_led;
|
bootloader-led0 = &green_pwm_led;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &green_pwm_led;
|
mcuboot-led0 = &green_pwm_led;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
vbatt {
|
vbatt {
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
bootloader-led0 = &green_pwm_led;
|
bootloader-led0 = &green_pwm_led;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &green_pwm_led;
|
mcuboot-led0 = &green_pwm_led;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
sim_select: sim-select {
|
sim_select: sim-select {
|
||||||
|
|
|
@ -15,6 +15,10 @@
|
||||||
zephyr,uart-mcumgr = &uart0;
|
zephyr,uart-mcumgr = &uart0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdt0;
|
||||||
|
};
|
||||||
|
|
||||||
sim_select: sim-select {
|
sim_select: sim-select {
|
||||||
compatible = "sim-select";
|
compatible = "sim-select";
|
||||||
sim-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
|
sim-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
led1 = &led1;
|
led1 = &led1;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
i2c-0 = &twi0;
|
i2c-0 = &twi0;
|
||||||
i2c-1 = &twi1;
|
i2c-1 = &twi1;
|
||||||
led0 = &yellow_led;
|
led0 = &yellow_led;
|
||||||
|
watchdog0 = &wdt;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -103,6 +103,7 @@
|
||||||
green-pwm-led = &green_pwm_led;
|
green-pwm-led = &green_pwm_led;
|
||||||
blue-pwm-led = &blue_pwm_led;
|
blue-pwm-led = &blue_pwm_led;
|
||||||
spi = &spi2;
|
spi = &spi2;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -73,6 +73,7 @@
|
||||||
sw2 = &joystick_down;
|
sw2 = &joystick_down;
|
||||||
sw3 = &joystick_right;
|
sw3 = &joystick_right;
|
||||||
sw4 = &joystick_up;
|
sw4 = &joystick_up;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_1;
|
led0 = &green_led_1;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,10 @@
|
||||||
min-residency-us = <900>;
|
min-residency-us = <900>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &iwdg;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&clk_lse {
|
&clk_lse {
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
sw0 = &buttonA;
|
sw0 = &buttonA;
|
||||||
sw1 = &buttonB;
|
sw1 = &buttonB;
|
||||||
magn0 = &lsm303agr_magn;
|
magn0 = &lsm303agr_magn;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
sw0 = &buttonA;
|
sw0 = &buttonA;
|
||||||
sw1 = &buttonB;
|
sw1 = &buttonB;
|
||||||
magn0 = &lsm303agr_magn;
|
magn0 = &lsm303agr_magn;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
mcuboot-button0 = &button1;
|
mcuboot-button0 = &button1;
|
||||||
mcuboot-led0 = &led1;
|
mcuboot-led0 = &led1;
|
||||||
sdhc0 = &sdhc0;
|
sdhc0 = &sdhc0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,10 @@
|
||||||
zephyr,flash = &flash1;
|
zephyr,flash = &flash1;
|
||||||
zephyr,code-partition = &slot0_partition;
|
zephyr,code-partition = &slot0_partition;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdt0;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&gpiote {
|
&gpiote {
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
sw1 = &button2;
|
sw1 = &button2;
|
||||||
mcuboot-button0 = &button1;
|
mcuboot-button0 = &button1;
|
||||||
mcuboot-led0 = &led1;
|
mcuboot-led0 = &led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
sw3 = &button4;
|
sw3 = &button4;
|
||||||
mcuboot-button0 = &button1;
|
mcuboot-button0 = &button1;
|
||||||
mcuboot-led0 = &led1;
|
mcuboot-led0 = &led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
sw3 = &button4;
|
sw3 = &button4;
|
||||||
mcuboot-button0 = &button1;
|
mcuboot-button0 = &button1;
|
||||||
mcuboot-led0 = &led1;
|
mcuboot-led0 = &led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
sw0 = &button1;
|
sw0 = &button1;
|
||||||
mcuboot-button0 = &button1;
|
mcuboot-button0 = &button1;
|
||||||
mcuboot-led0 = &led1;
|
mcuboot-led0 = &led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &led1;
|
led0 = &led1;
|
||||||
led1pwm = &led1bluepwm;
|
led1pwm = &led1bluepwm;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
sw1 = &button1;
|
sw1 = &button1;
|
||||||
pwm-buzzer = &pwm0;
|
pwm-buzzer = &pwm0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -83,6 +83,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led1a;
|
mcuboot-led0 = &led1a;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -195,6 +195,7 @@
|
||||||
sw2 = &mag1;
|
sw2 = &mag1;
|
||||||
mcuboot-button0 = &button1;
|
mcuboot-button0 = &button1;
|
||||||
mcuboot-led0 = &led1;
|
mcuboot-led0 = &led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
/* sw0/1 alias defined for compatibility with samples */
|
/* sw0/1 alias defined for compatibility with samples */
|
||||||
sw0 = &sw2;
|
sw0 = &sw2;
|
||||||
sw1 = &sw3;
|
sw1 = &sw3;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
/* sw0/1 alias defined for compatibility with samples */
|
/* sw0/1 alias defined for compatibility with samples */
|
||||||
sw0 = &sw2;
|
sw0 = &sw2;
|
||||||
sw1 = &sw3;
|
sw1 = &sw3;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &blue_led;
|
mcuboot-led0 = &blue_led;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Used for accessing other pins */
|
/* Used for accessing other pins */
|
||||||
|
|
|
@ -19,6 +19,10 @@
|
||||||
zephyr,flash = &flash0;
|
zephyr,flash = &flash0;
|
||||||
zephyr,code-partition = &slot0_partition;
|
zephyr,code-partition = &slot0_partition;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdt0;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&gpiote {
|
&gpiote {
|
||||||
|
|
|
@ -71,6 +71,7 @@
|
||||||
led2-red = &led2_red;
|
led2-red = &led2_red;
|
||||||
led3-blue = &led3_blue;
|
led3-blue = &led3_blue;
|
||||||
pwm-led0 = &pwm_led0_red;
|
pwm-led0 = &pwm_led0_red;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -81,6 +81,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
sw1 = &button1;
|
sw1 = &button1;
|
||||||
sw2 = &button2;
|
sw2 = &button2;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
led1 = &green_led_1;
|
led1 = &green_led_1;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
eswifi0 = &wifi0;
|
eswifi0 = &wifi0;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -64,6 +64,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
sw1 = &button1;
|
sw1 = &button1;
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
sw0 = &boot_button;
|
sw0 = &boot_button;
|
||||||
sw1 = &user_button;
|
sw1 = &user_button;
|
||||||
lora0 = &lora;
|
lora0 = &lora;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwr_3v3: pwr-3v3-ctrl {
|
pwr_3v3: pwr-3v3-ctrl {
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
sw0 = &user_button_1;
|
sw0 = &user_button_1;
|
||||||
sw1 = &user_button_2;
|
sw1 = &user_button_2;
|
||||||
sw2 = &user_button_3;
|
sw2 = &user_button_3;
|
||||||
|
watchdog0 = &wwdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
sw0 = &user_button_1;
|
sw0 = &user_button_1;
|
||||||
sw1 = &user_button_2;
|
sw1 = &user_button_2;
|
||||||
sw2 = &user_button_3;
|
sw2 = &user_button_3;
|
||||||
|
watchdog0 = &wwdt0;
|
||||||
/* For pwm test suites */
|
/* For pwm test suites */
|
||||||
pwm-0 = &sc_timer;
|
pwm-0 = &sc_timer;
|
||||||
pwm-led0 = &red_pwm_led;
|
pwm-led0 = &red_pwm_led;
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
sw0 = &user_button_1;
|
sw0 = &user_button_1;
|
||||||
sw1 = &user_button_2;
|
sw1 = &user_button_2;
|
||||||
sw2 = &user_button_3;
|
sw2 = &user_button_3;
|
||||||
|
watchdog0 = &wwdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
i2c0 = &i2c_smb_0;
|
i2c0 = &i2c_smb_0;
|
||||||
i2c1 = &i2c_smb_1;
|
i2c1 = &i2c_smb_1;
|
||||||
kscan0 = &kscan0;
|
kscan0 = &kscan0;
|
||||||
|
watchdog0 = &wdog;
|
||||||
};
|
};
|
||||||
|
|
||||||
power-states {
|
power-states {
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
i2c1 = &i2c_smb_1;
|
i2c1 = &i2c_smb_1;
|
||||||
i2c7 = &i2c_smb_2;
|
i2c7 = &i2c_smb_2;
|
||||||
kscan0 = &kscan0;
|
kscan0 = &kscan0;
|
||||||
|
watchdog0 = &wdog;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
i2c1 = &i2c_smb_1;
|
i2c1 = &i2c_smb_1;
|
||||||
i2c7 = &i2c_smb_2;
|
i2c7 = &i2c_smb_2;
|
||||||
pwm-0 = &pwm0;
|
pwm-0 = &pwm0;
|
||||||
|
watchdog0 = &wdog;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -30,6 +30,10 @@
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
reg = <0x80000000 DT_SIZE_M(64)>;
|
reg = <0x80000000 DT_SIZE_M(64)>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdog1;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&lpuart1 {
|
&lpuart1 {
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
mipi-dsi = &mipi_dsi;
|
mipi-dsi = &mipi_dsi;
|
||||||
|
watchdog0 = &wdog1;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
pwm-0 = &pwm6;
|
pwm-0 = &pwm6;
|
||||||
/* For i2c test suites */
|
/* For i2c test suites */
|
||||||
i2c-0 = &i2c0_0;
|
i2c-0 = &i2c0_0;
|
||||||
|
watchdog0 = &twd0;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwmleds {
|
pwmleds {
|
||||||
|
|
|
@ -135,6 +135,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
led4 = &led4;
|
led4 = &led4;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
sw1 = &button1;
|
sw1 = &button1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -84,6 +84,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,7 @@
|
||||||
led1 = &led0_green;
|
led1 = &led0_green;
|
||||||
led2 = &led0_blue;
|
led2 = &led0_blue;
|
||||||
pwm-led0 = &pwm_led0;
|
pwm-led0 = &pwm_led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -79,6 +79,7 @@
|
||||||
green-pwm-led = &pwm_led0_green;
|
green-pwm-led = &pwm_led0_green;
|
||||||
red-pwm-led = &pwm_led1_red;
|
red-pwm-led = &pwm_led1_red;
|
||||||
blue-pwm-led = &pwm_led2_blue;
|
blue-pwm-led = &pwm_led2_blue;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -84,6 +84,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -113,6 +113,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
led1 = &led1;
|
led1 = &led1;
|
||||||
led2 = &led2;
|
led2 = &led2;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -78,6 +78,7 @@
|
||||||
green-pwm-led = &pwm_led0_green;
|
green-pwm-led = &pwm_led0_green;
|
||||||
red-pwm-led = &pwm_led1_red;
|
red-pwm-led = &pwm_led1_red;
|
||||||
blue-pwm-led = &pwm_led2_blue;
|
blue-pwm-led = &pwm_led2_blue;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
red-pwm-led = &red_pwm_led;
|
red-pwm-led = &red_pwm_led;
|
||||||
green-pwm-led = &green_pwm_led;
|
green-pwm-led = &green_pwm_led;
|
||||||
blue-pwm-led = &blue_pwm_led;
|
blue-pwm-led = &blue_pwm_led;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -74,6 +74,7 @@
|
||||||
blue-pwm-led = &pwm_led1;
|
blue-pwm-led = &pwm_led1;
|
||||||
red-pwm-led = &pwm_led2;
|
red-pwm-led = &pwm_led2;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -84,6 +84,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -124,6 +124,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -84,6 +84,7 @@
|
||||||
blue-pwm-led = &blue_pwm_led;
|
blue-pwm-led = &blue_pwm_led;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0_green;
|
mcuboot-led0 = &led0_green;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
led1 = &led1;
|
led1 = &led1;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
/* These aliases are provided for compatibility with samples */
|
/* These aliases are provided for compatibility with samples */
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &led0;
|
led0 = &led0;
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -78,6 +78,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -125,6 +125,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -125,6 +125,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
rgb-pwm = &pwm0;
|
rgb-pwm = &pwm0;
|
||||||
mode-pwm = &pwm1;
|
mode-pwm = &pwm1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
sw0 = &button0;
|
sw0 = &button0;
|
||||||
rgb-pwm = &pwm0;
|
rgb-pwm = &pwm0;
|
||||||
mode-pwm = &pwm1;
|
mode-pwm = &pwm1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -133,6 +133,10 @@
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdt0;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&gpiote {
|
&gpiote {
|
||||||
|
|
|
@ -149,6 +149,7 @@
|
||||||
bootloader-led0 = &led0;
|
bootloader-led0 = &led0;
|
||||||
mcuboot-button0 = &button0;
|
mcuboot-button0 = &button0;
|
||||||
mcuboot-led0 = &led0;
|
mcuboot-led0 = &led0;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
pwm-led0 = &green_pwm_led;
|
pwm-led0 = &green_pwm_led;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
blue-pwm-led = &blue_pwm_led;
|
blue-pwm-led = &blue_pwm_led;
|
||||||
red-pwm-led = &red_pwm_led;
|
red-pwm-led = &red_pwm_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
pwm-led0 = &green_pwm_led;
|
pwm-led0 = &green_pwm_led;
|
||||||
|
watchdog0 = &wwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
led1 = &blue_led_1;
|
led1 = &blue_led_1;
|
||||||
led2 = &red_led_1;
|
led2 = &red_led_1;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
led1 = &blue_led;
|
led1 = &blue_led;
|
||||||
led2 = &red_led;
|
led2 = &red_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -59,6 +59,7 @@
|
||||||
led1 = &blue_led;
|
led1 = &blue_led;
|
||||||
led2 = &red_led;
|
led2 = &red_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_1;
|
led0 = &green_led_1;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_1;
|
led0 = &green_led_1;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
led0 = &green_led;
|
led0 = &green_led;
|
||||||
pwm-led0 = &green_pwm_led;
|
pwm-led0 = &green_pwm_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
led0 = &green_led;
|
led0 = &green_led;
|
||||||
pwm-led0 = &green_pwm_led;
|
pwm-led0 = &green_pwm_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
led1 = &yellow_led;
|
led1 = &yellow_led;
|
||||||
pwm-led0 = &red_pwm_led;
|
pwm-led0 = &red_pwm_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
pwm-led0 = &green_pwm_led;
|
pwm-led0 = &green_pwm_led;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
led0 = &green_led_0;
|
led0 = &green_led_0;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
eeprom-0 = &eeprom;
|
eeprom-0 = &eeprom;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
led2 = &red_led_3;
|
led2 = &red_led_3;
|
||||||
pwm-led0 = &red_pwm_led;
|
pwm-led0 = &red_pwm_led;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &wwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,7 @@
|
||||||
sw0 = &user_button_1;
|
sw0 = &user_button_1;
|
||||||
sw1 = &user_button_2;
|
sw1 = &user_button_2;
|
||||||
sw2 = &user_button_3;
|
sw2 = &user_button_3;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -59,6 +59,7 @@
|
||||||
sw1 = &user_button_2;
|
sw1 = &user_button_2;
|
||||||
sw2 = &user_button_3;
|
sw2 = &user_button_3;
|
||||||
lora0 = &lora;
|
lora0 = &lora;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
|
|
||||||
power-states {
|
power-states {
|
||||||
|
|
|
@ -37,6 +37,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_2;
|
led0 = &green_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
aliases {
|
aliases {
|
||||||
led0 = &green_led_1;
|
led0 = &green_led_1;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,7 @@
|
||||||
led1 = &yellow_led_2;
|
led1 = &yellow_led_2;
|
||||||
sw0 = &user_button;
|
sw0 = &user_button;
|
||||||
sdhc0 = &sdhc0;
|
sdhc0 = &sdhc0;
|
||||||
|
watchdog0 = &iwdg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,7 @@
|
||||||
sw2 = &evb_sw3;
|
sw2 = &evb_sw3;
|
||||||
sw3 = &evb_sw4;
|
sw3 = &evb_sw4;
|
||||||
bootloader-led0 = &evb_led1;
|
bootloader-led0 = &evb_led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,7 @@
|
||||||
sw2 = &evb_sw3;
|
sw2 = &evb_sw3;
|
||||||
sw3 = &evb_sw4;
|
sw3 = &evb_sw4;
|
||||||
bootloader-led0 = &evb_led1;
|
bootloader-led0 = &evb_led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -85,6 +85,7 @@
|
||||||
pwm-led0 = &pwm_evb_led1;
|
pwm-led0 = &pwm_evb_led1;
|
||||||
sw0 = &evb_sw1;
|
sw0 = &evb_sw1;
|
||||||
sw1 = &evb_sw2;
|
sw1 = &evb_sw2;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -86,6 +86,7 @@
|
||||||
sw0 = &evb_sw1;
|
sw0 = &evb_sw1;
|
||||||
sw1 = &evb_sw2;
|
sw1 = &evb_sw2;
|
||||||
bootloader-led0 = &evb_led1;
|
bootloader-led0 = &evb_led1;
|
||||||
|
watchdog0 = &wdt0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
output-ohms = <2100000>;
|
output-ohms = <2100000>;
|
||||||
full-ohms = <(2100000 + 806000)>;
|
full-ohms = <(2100000 + 806000)>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
watchdog0 = &wdt0;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart1 { /* ESP32 */
|
&uart1 { /* ESP32 */
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue