We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba7a7d commit 61d45bfCopy full SHA for 61d45bf
samples/drivers/counter/alarm/sample.yaml
@@ -29,6 +29,7 @@ tests:
29
- nrf54l15dk/nrf54l15/cpuflpr
30
- nrf54lm20dk/nrf54lm20a/cpuapp
31
- nrf9160dk/nrf9160
32
+ - sama7g54_ek
33
- samd20_xpro
34
- bl5340_dvk/nrf5340/cpuapp
35
- gd32e103v_eval
samples/drivers/counter/alarm/src/main.c
@@ -75,6 +75,10 @@ struct counter_alarm_cfg alarm_cfg;
75
#define TIMER DT_NODELABEL(rtc0)
76
#elif defined(CONFIG_COUNTER_RENESAS_RZ_CMTW)
77
#define TIMER DT_INST(0, renesas_rz_cmtw_counter)
78
+#elif defined(CONFIG_COUNTER_MCHP_SAM_PIT64B)
79
+#define TIMER DT_NODELABEL(pit64b1)
80
+#undef ALARM_FLAGS
81
+#define ALARM_FLAGS COUNTER_ALARM_CFG_ABSOLUTE
82
#else
83
#error Unable to find a counter device node in devicetree
84
#endif
0 commit comments