174 lines
3.3 KiB
Plaintext
174 lines
3.3 KiB
Plaintext
/*
|
|
* Copyright (c) 2019-2022 Actinius
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "actinius_icarus_common-pinctrl.dtsi"
|
|
#include <zephyr/dt-bindings/input/input-event-codes.h>
|
|
|
|
/ {
|
|
model = "Actinius Icarus IoT Dev Board";
|
|
compatible = "actinius,icarus";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
zephyr,uart-mcumgr = &uart0;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
red_led: led_0 {
|
|
gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
|
|
label = "Red LED";
|
|
};
|
|
|
|
green_led: led_1 {
|
|
gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;
|
|
label = "Green LED";
|
|
};
|
|
|
|
blue_led: led_2 {
|
|
gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
|
|
label = "Blue LED";
|
|
};
|
|
};
|
|
|
|
pwmleds {
|
|
compatible = "pwm-leds";
|
|
|
|
red_pwm_led: led_pwm_0 {
|
|
pwms = <&pwm0 0 PWM_MSEC(20) PWM_POLARITY_INVERTED>;
|
|
label = "Red PWM LED";
|
|
};
|
|
|
|
green_pwm_led: led_pwm_1 {
|
|
pwms = <&pwm0 1 PWM_MSEC(20) PWM_POLARITY_INVERTED>;
|
|
label = "Green PWM LED";
|
|
};
|
|
|
|
blue_pwm_led: led_pwm_2 {
|
|
pwms = <&pwm0 2 PWM_MSEC(20) PWM_POLARITY_INVERTED>;
|
|
label = "Blue PWM LED";
|
|
};
|
|
};
|
|
|
|
buttons {
|
|
compatible = "gpio-keys";
|
|
|
|
button0: button_0 {
|
|
gpios = <&gpio0 5 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
|
|
label = "Push Button 1";
|
|
zephyr,code = <INPUT_KEY_0>;
|
|
};
|
|
};
|
|
|
|
aliases {
|
|
led0 = &red_led;
|
|
led1 = &green_led;
|
|
led2 = &blue_led;
|
|
pwm-led0 = &red_pwm_led;
|
|
pwm-led1 = &green_pwm_led;
|
|
pwm-led2 = &blue_pwm_led;
|
|
red-pwm-led = &red_pwm_led;
|
|
green-pwm-led = &green_pwm_led;
|
|
blue-pwm-led = &blue_pwm_led;
|
|
sw0 = &button0;
|
|
bootloader-led0 = &blue_led;
|
|
mcuboot-button0 = &button0;
|
|
mcuboot-led0 = &blue_led;
|
|
watchdog0 = &wdt0;
|
|
accel0 = &lis2dh12_accel;
|
|
};
|
|
|
|
vbatt {
|
|
compatible = "voltage-divider";
|
|
io-channels = <&adc 0>;
|
|
output-ohms = <10000000>;
|
|
full-ohms = <(10000000 + 4700000)>;
|
|
};
|
|
|
|
sim_select: sim-select {
|
|
compatible = "actinius-sim-select";
|
|
sim-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
|
|
sim = "esim";
|
|
};
|
|
};
|
|
|
|
&adc {
|
|
status ="okay";
|
|
};
|
|
|
|
&gpiote {
|
|
status = "okay";
|
|
};
|
|
|
|
&gpio0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&uart0_default>;
|
|
pinctrl-1 = <&uart0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&uart1_default>;
|
|
pinctrl-1 = <&uart1_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
&uart2 {
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&uart2_default>;
|
|
pinctrl-1 = <&uart2_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
&i2c2 {
|
|
compatible = "nordic,nrf-twim";
|
|
status = "okay";
|
|
|
|
clock-frequency = <I2C_BITRATE_FAST>;
|
|
|
|
pinctrl-0 = <&i2c2_default>;
|
|
pinctrl-1 = <&i2c2_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
lis2dh12_accel: lis2dh12-accel@19 {
|
|
compatible = "st,lis2dh12", "st,lis2dh";
|
|
reg = <0x19>;
|
|
irq-gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>,
|
|
<&gpio0 29 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
|
|
&spi3 {
|
|
compatible = "nordic,nrf-spim";
|
|
status = "okay";
|
|
|
|
pinctrl-0 = <&spi3_default>;
|
|
pinctrl-1 = <&spi3_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
&pwm0 {
|
|
status = "okay";
|
|
pinctrl-0 = <&pwm0_default>;
|
|
pinctrl-1 = <&pwm0_sleep>;
|
|
pinctrl-names = "default", "sleep";
|
|
};
|
|
|
|
/* Include file with mappings and aliases for feather compatibility */
|
|
#include "feather_connector.dtsi"
|
|
|
|
/* Include default memory partition configuration file */
|
|
#include <common/nordic/nrf91xx_partition.dtsi>
|