/ * @brief * Restart RTC counter from zero ******************************************************************************/
| 348 | * Restart RTC counter from zero |
| 349 | ******************************************************************************/ |
| 350 | void RTC_CounterReset(void) |
| 351 | { |
| 352 | /* A disable/enable sequnce will start the counter at zero */ |
| 353 | RTC_Enable(false); |
| 354 | RTC_Enable(true); |
| 355 | } |
| 356 | |
| 357 | |
| 358 | /** @} (end addtogroup RTC) */ |
no test coverage detected