temperature logger: rename stuff to remove thermistor references
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
#include "movement.h"
|
||||
#include "watch.h"
|
||||
|
||||
#define THERMISTOR_LOGGING_NUM_DATA_POINTS (36)
|
||||
#define TEMPERATURE_LOGGING_NUM_DATA_POINTS (36)
|
||||
|
||||
typedef struct {
|
||||
watch_date_time_t timestamp;
|
||||
@@ -68,8 +68,8 @@ typedef struct {
|
||||
uint8_t display_index; // the index we are displaying on screen
|
||||
uint8_t ts_ticks; // when the user taps the LIGHT button, we show the timestamp for a few ticks.
|
||||
int32_t data_points; // the absolute number of data points logged
|
||||
thermistor_logger_data_point_t data[THERMISTOR_LOGGING_NUM_DATA_POINTS];
|
||||
} thermistor_logger_state_t;
|
||||
thermistor_logger_data_point_t data[TEMPERATURE_LOGGING_NUM_DATA_POINTS];
|
||||
} temperature_logging_state_t;
|
||||
|
||||
void temperature_logging_face_setup(uint8_t watch_face_index, void ** context_ptr);
|
||||
void temperature_logging_face_activate(void *context);
|
||||
|
||||
Reference in New Issue
Block a user