We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc13755 commit 9f95d62Copy full SHA for 9f95d62
samples/basic/blink_led/sample.yaml
@@ -5,5 +5,6 @@ tests:
5
# FIXME: We should remove those and just rely on depends_on
6
platform_whitelist: arduino_101 quark_d2000_crb
7
nucleo_f103rb nucleo_f401re nucleo_l476rg stm32f4_disco hexiwear_k64
8
+ colibri_imx7d_m4
9
tags: drivers pwm
10
depends_on: pwm
samples/basic/blink_led/src/main.c
@@ -30,6 +30,9 @@
30
#elif defined(CONFIG_BOARD_HEXIWEAR_K64)
31
#define PWM_DRIVER GREEN_PWM_NAME
32
#define PWM_CHANNEL GREEN_PWM_CHANNEL
33
+#elif defined(CONFIG_BOARD_COLIBRI_IMX7D_M4)
34
+#define PWM_DRIVER PWM_1_LABEL
35
+#define PWM_CHANNEL 0
36
#else
37
#error "Choose supported PWM driver"
38
#endif
0 commit comments