boards: st: nucleo_wb07cc: add PWM support and LED
Add the PWM LED to Nucleo-WB07CC board and mark as compatible with PWM. Also mark counters as supported (but don't enable by default). Signed-off-by: Mathieu Choplain <mathieu.choplain@st.com>
This commit is contained in:
parent
784629b815
commit
5b31aca5e2
3 changed files with 23 additions and 0 deletions
|
|
@ -52,6 +52,8 @@ The Zephyr ``nucleo_wb07cc`` board target supports the following hardware featur
|
|||
+-----------+------------+-------------------------------------+
|
||||
| ADC | on-chip | adc |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| TIMER | on-chip | counter, pwm |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| RADIO | on-chip | Bluetooth Low Energy |
|
||||
+-----------+------------+-------------------------------------+
|
||||
|
||||
|
|
|
|||
|
|
@ -39,6 +39,13 @@
|
|||
};
|
||||
};
|
||||
|
||||
pwmleds: pwmleds {
|
||||
compatible = "pwm-leds";
|
||||
pwm_red_led_1: pwm_red_led_1 {
|
||||
pwms = <&pwm1 3 PWM_MSEC(20) PWM_POLARITY_NORMAL>;
|
||||
};
|
||||
};
|
||||
|
||||
gpio_keys {
|
||||
compatible = "gpio-keys";
|
||||
user_button_1: button_0 {
|
||||
|
|
@ -62,6 +69,7 @@
|
|||
led0 = &blue_led_1;
|
||||
led1 = &green_led_1;
|
||||
led2 = &red_led_1;
|
||||
pwm-led0 = &pwm_red_led_1;
|
||||
sw0 = &user_button_1;
|
||||
sw1 = &user_button_2;
|
||||
sw2 = &user_button_3;
|
||||
|
|
@ -122,6 +130,17 @@
|
|||
<&rcc STM32_SRC_SYSCLK SPI2_I2S2_SEL(1)>;
|
||||
};
|
||||
|
||||
&timers1 {
|
||||
status = "okay";
|
||||
st,prescaler = <10000>;
|
||||
|
||||
pwm1: pwm {
|
||||
status = "okay";
|
||||
pinctrl-0 = <&tim1_ch3_pb2>;
|
||||
pinctrl-names = "default";
|
||||
};
|
||||
};
|
||||
|
||||
&flash0 {
|
||||
partitions {
|
||||
compatible = "fixed-partitions";
|
||||
|
|
|
|||
|
|
@ -12,9 +12,11 @@ supported:
|
|||
- adc
|
||||
- arduino_i2c
|
||||
- arduino_spi
|
||||
- counter
|
||||
- dma
|
||||
- gpio
|
||||
- i2c
|
||||
- pwm
|
||||
- spi
|
||||
- bluetooth
|
||||
vendor: st
|
||||
|
|
|
|||
Loading…
Reference in a new issue