diff options
| author | Joey Castillo <jose.castillo@gmail.com> | 2021-10-16 13:48:16 -0400 | 
|---|---|---|
| committer | Joey Castillo <jose.castillo@gmail.com> | 2021-10-16 13:48:16 -0400 | 
| commit | 458ebf6987d6de143c53493782d438e55253d6e9 (patch) | |
| tree | d9107562b788a38aa9a80ae5c73971fb91307e60 | |
| parent | 69397e9b0f011cd9108547f05ab21073c4a9ddb6 (diff) | |
| download | Sensor-Watch-458ebf6987d6de143c53493782d438e55253d6e9.tar.gz Sensor-Watch-458ebf6987d6de143c53493782d438e55253d6e9.tar.bz2 Sensor-Watch-458ebf6987d6de143c53493782d438e55253d6e9.zip | |
remove unimplemented settings for now
| -rw-r--r-- | movement/movement.h | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/movement/movement.h b/movement/movement.h index 934254bc..0ae0cc13 100644 --- a/movement/movement.h +++ b/movement/movement.h @@ -6,13 +6,9 @@  // TODO: none of this is implemented  typedef union {      struct { -        uint32_t reserved : 3; +        uint32_t reserved : 16;          uint32_t clock_mode_24h : 1;        // determines whether clock should use 12 or 24 hour mode.          uint32_t button_should_sound : 1;   // if true, pressing a button emits a sound. -        uint32_t signal_should_sound : 1;   // if true, a double beep is played at the top of each hour. -        uint32_t alarm_should_sound : 1;    // if true, the alarm interrupt can match a time and play a song. -        uint32_t alarm_minute : 6;          // the minute of the alarm we want to match -        uint32_t alarm_hour : 5;            // the second of the alarm we want to match          uint32_t le_inactivity_interval : 3;// 0 to disable low energy mode, or an inactivity interval for going into low energy mode.          uint32_t led_duration : 3;          // how many seconds to shine the LED for, or 0 to disable it.          uint32_t led_red_color : 4;         // for general purpose illumination, the red LED value (0-15) | 
