Workflow

  1. 1.
    Enable interrupt handling for the device's RTC peripheral.
    system_interrupt_enable(SYSTEM_INTERRUPT_MODULE_RTC);
    
  2. 2.
    Enable global interrupts, so that any enabled and active interrupt sources can trigger their respective handler functions.
    system_interrupt_enable_global();