75 lines
974 B
Plaintext
75 lines
974 B
Plaintext
/dts-v1/;
|
|
|
|
#include <nxp/nxp_k6x.dtsi>
|
|
|
|
/ {
|
|
model = "Hexiwear K64 board";
|
|
compatible = "nxp,hexiwear", "nxp,k64f", "nxp,k6x";
|
|
|
|
aliases {
|
|
adc_0 = &adc0;
|
|
adc_1 = &adc1;
|
|
pwm_0 = &pwm0;
|
|
pwm_1 = &pwm1;
|
|
pwm_2 = &pwm2;
|
|
pwm_3 = &pwm3;
|
|
uart_0 = &uart0;
|
|
uart_4 = &uart4;
|
|
pinmux_a = &pinmux_a;
|
|
pinmux_b = &pinmux_b;
|
|
pinmux_c = &pinmux_c;
|
|
pinmux_d = &pinmux_d;
|
|
pinmux_e = &pinmux_e;
|
|
gpio_a = &gpioa;
|
|
gpio_b = &gpiob;
|
|
gpio_c = &gpioc;
|
|
gpio_d = &gpiod;
|
|
gpio_e = &gpioe;
|
|
i2c_0 = &i2c0;
|
|
i2c_1 = &i2c1;
|
|
i2c_2 = &i2c2;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
zephyr,console = &uart0;
|
|
#ifdef CONFIG_BT
|
|
zephyr,bt-uart = &uart4;
|
|
#endif
|
|
};
|
|
|
|
};
|
|
|
|
&adc0 {
|
|
status = "ok";
|
|
};
|
|
|
|
&adc1 {
|
|
status = "ok";
|
|
};
|
|
|
|
&pwm3 {
|
|
status = "ok";
|
|
};
|
|
|
|
&i2c0 {
|
|
status = "ok";
|
|
};
|
|
|
|
&i2c1 {
|
|
status = "ok";
|
|
};
|
|
|
|
&uart0 {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|
|
|
|
#ifdef CONFIG_BT
|
|
&uart4 {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|
|
#endif
|