Ejemplo n.º 1
0
Archivo: st.c Proyecto: Kreyl/Candle
/**
 * @brief   Stops the alarm interrupt.
 * @note    This functionality is only available in free running mode, the
 *          behavior in periodic mode is undefined.
 *
 * @api
 */
void stStopAlarm(void) {

  st_lld_stop_alarm();
}
Ejemplo n.º 2
0
/**
 * @brief   Stops the alarm interrupt.
 * @note    This functionality is only available in free running mode, the
 *          behavior in periodic mode is undefined.
 *
 * @api
 */
void stStopAlarm(void) {

  osalDbgAssert(stIsAlarmActive() != false, "not active");

  st_lld_stop_alarm();
}