File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
targets/TARGET_Maxim/TARGET_MAX32600 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -238,20 +238,20 @@ void lp_ticker_fire_interrupt(void)
238
238
}
239
239
240
240
//******************************************************************************
241
- inline void lp_ticker_disable_interrupt (void )
241
+ void lp_ticker_disable_interrupt (void )
242
242
{
243
243
MXC_RTCTMR -> inten &= ~MXC_F_RTC_INTEN_COMP0 ;
244
244
}
245
245
246
246
//******************************************************************************
247
- inline void lp_ticker_clear_interrupt (void )
247
+ void lp_ticker_clear_interrupt (void )
248
248
{
249
249
MXC_RTCTMR -> flags = MXC_F_RTC_FLAGS_ASYNC_CLR_FLAGS ;
250
250
MXC_PWRSEQ -> flags = MXC_F_PWRSEQ_MSK_FLAGS_RTC_CMPR0 ;
251
251
}
252
252
253
253
//******************************************************************************
254
- inline uint32_t lp_ticker_read (void )
254
+ uint32_t lp_ticker_read (void )
255
255
{
256
256
return rtc_read64 ();
257
257
}
You can’t perform that action at this time.
0 commit comments