Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit f82f20d9 authored by Adrian DC's avatar Adrian DC
Browse files

cm: charger: Export the RTC Clock and Alarm timestamps

 * Gives easy access to the RTC values in order to verify or debug
    the current status of the RTC clock and alarm, for example
    if a user says powered-off alarm doesn't work

RM-290

Change-Id: I47e71433a53a25fe9880e7be6a1f5bdb1105ef78
parent e1c3df5f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -261,10 +261,12 @@ static void *alarm_thread(void *)
     * set by user
     */
    rc = alarm_get_time(ALARM_TIME, &alm_secs);
    LOGI("RTC Alarm %ld\n", alm_secs);
    if (rc < 0 || !alm_secs)
        goto err;

    rc = alarm_get_time(RTC_TIME, &rtc_secs);
    LOGI("RTC Clock %ld\n", rtc_secs);
    if (rc < 0)
        goto err;