mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
27 lines
433 B
C
27 lines
433 B
C
/*! \file calibrate.h
|
|
\brief RTC calibration tool.
|
|
*/
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
//! Enforce the calibration setting.
|
|
void calibrate_enforce();
|
|
|
|
//! Draw the calibrate selection.
|
|
void calibrate_draw();
|
|
|
|
//! Change the selected applet.
|
|
int calibrate_keypress(char c);
|
|
|
|
//! On entry, load calibration.
|
|
void calibrate_init();
|
|
//! On exit, set the calibrate app.
|
|
int calibrate_exit();
|
|
|
|
#ifndef RTCCALIBRATE
|
|
#define RTCCALIBRATE 0
|
|
#endif
|
|
|