summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com>2024-02-25 22:55:55 -0300
committerMatheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com>2024-02-25 22:57:47 -0300
commit4633be0845aab21603f0f09e1ab026c74e7fc547 (patch)
treee3f0be6c14722a5e2d4b5d1ee8dc1d2e60edd27a
parent238709e1d9ad702e6a9418e827b8588c00d20a78 (diff)
downloadSensor-Watch-4633be0845aab21603f0f09e1ab026c74e7fc547.tar.gz
Sensor-Watch-4633be0845aab21603f0f09e1ab026c74e7fc547.tar.bz2
Sensor-Watch-4633be0845aab21603f0f09e1ab026c74e7fc547.zip
faces/totp: delete leading underscores
Makes for cleaner symbols.
-rw-r--r--movement/watch_faces/complication/totp_face.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/movement/watch_faces/complication/totp_face.c b/movement/watch_faces/complication/totp_face.c
index ac73c55e..35e435c6 100644
--- a/movement/watch_faces/complication/totp_face.c
+++ b/movement/watch_faces/complication/totp_face.c
@@ -66,7 +66,7 @@ static totp_t credentials[] = {
// END OF KEY DATA.
////////////////////////////////////////////////////////////////////////////////
-static inline totp_t *_totp_current(totp_state_t *totp_state) {
+static inline totp_t *totp_current(totp_state_t *totp_state) {
return &credentials[totp_state->current_index];
}
@@ -74,11 +74,11 @@ static inline size_t totp_total(void) {
return sizeof(credentials) / sizeof(*credentials);
}
-static void _update_display(totp_state_t *totp_state) {
+static void totp_display(totp_state_t *totp_state) {
char buf[14];
div_t result;
uint8_t valid_for;
- totp_t *totp = _totp_current(totp_state);
+ totp_t *totp = totp_current(totp_state);
result = div(totp_state->timestamp, totp->period);
if (result.quot != totp_state->steps) {
@@ -121,7 +121,7 @@ void totp_face_activate(movement_settings_t *settings, void *context) {
(void) settings;
memset(context, 0, sizeof(totp_state_t));
totp_state_t *totp_state = (totp_state_t *)context;
- totp_t *totp = _totp_current(totp_state);
+ totp_t *totp = totp_current(totp_state);
TOTP(totp->key, totp->key_length, totp->period, totp->algorithm);
totp_state->timestamp = watch_utility_date_time_to_unix_time(watch_rtc_get_date_time(), movement_timezone_offsets[settings->bit.time_zone] * 60);
totp_state->current_code = getCodeFromTimestamp(totp_state->timestamp);
@@ -136,7 +136,7 @@ bool totp_face_loop(movement_event_t event, movement_settings_t *settings, void
totp_state->timestamp++;
// fall through
case EVENT_ACTIVATE:
- _update_display(totp_state);
+ totp_display(totp_state);
break;
case EVENT_TIMEOUT:
movement_move_to_face(0);
@@ -148,9 +148,9 @@ bool totp_face_loop(movement_event_t event, movement_settings_t *settings, void
// wrap around to first key
totp_state->current_index = 0;
}
- totp_t *totp = _totp_current(totp_state);
+ totp_t *totp = totp_current(totp_state);
TOTP(totp->key, totp->key_length, totp->period, totp->algorithm);
- _update_display(totp_state);
+ totp_display(totp_state);
break;
case EVENT_ALARM_BUTTON_DOWN:
case EVENT_ALARM_LONG_PRESS: