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 6781ee8 commit 73de4e6Copy full SHA for 73de4e6
targets/TARGET_Silicon_Labs/TARGET_EFM32/lp_ticker.c
@@ -128,19 +128,6 @@ void lp_ticker_free()
128
RTC_FreezeEnable(false);
129
}
130
131
-void rtc_set_comp0_value(uint64_t value, bool enable)
132
-{
133
- rtc_enable_comp0(false);
134
-
135
- /* Set callback */
136
- RTC_FreezeEnable(true);
137
- extended_comp0 = (uint32_t) (value >> RTC_BITS);
138
- RTC_CompareSet(0, (uint32_t) (value & RTC_MAX_VALUE));
139
- RTC_FreezeEnable(false);
140
141
- rtc_enable_comp0(enable);
142
-}
143
144
void lp_ticker_set_interrupt(timestamp_t timestamp)
145
{
146
RTC_IntDisable(RTC_IF_COMP0);
0 commit comments