Revert PR #387 - fixes LE state restoration
This commit caused state restored from backup registers
to be overwritten. It is thereby reverted until a better
solution is found or movement is refactored.
This reverts commit 524098b925.
Reviewed-by: Matheus Afonso Martins Moreira <matheus@matheusmoreira.com>
References: https://github.com/joeycastillo/Sensor-Watch/pull/474
This commit is contained in:
@@ -76,15 +76,15 @@ const watch_face_t watch_faces[] = {
|
||||
/* Set the timeout before switching to low energy mode
|
||||
* Valid values are:
|
||||
* 0: Never
|
||||
* 1: 10 mins
|
||||
* 2: 1 hour
|
||||
* 3: 2 hours
|
||||
* 4: 6 hours
|
||||
* 5: 12 hours
|
||||
* 6: 1 day
|
||||
* 1: 1 hour
|
||||
* 2: 2 hours
|
||||
* 3: 6 hours
|
||||
* 4: 12 hours
|
||||
* 5: 1 day
|
||||
* 6: 2 days
|
||||
* 7: 7 days
|
||||
*/
|
||||
#define MOVEMENT_DEFAULT_LOW_ENERGY_INTERVAL 2
|
||||
#define MOVEMENT_DEFAULT_LOW_ENERGY_INTERVAL 1
|
||||
|
||||
/* Set the led duration
|
||||
* Valid values are:
|
||||
@@ -95,22 +95,6 @@ const watch_face_t watch_faces[] = {
|
||||
*/
|
||||
#define MOVEMENT_DEFAULT_LED_DURATION 1
|
||||
|
||||
/* The latitude and longitude used for the wearers location
|
||||
* Set signed values in 1/100ths of a degree
|
||||
*/
|
||||
#define MOVEMENT_DEFAULT_LATITUDE 0
|
||||
#define MOVEMENT_DEFAULT_LONGITUDE 0
|
||||
|
||||
/* The wearers birthdate
|
||||
* Valid values:
|
||||
* Year: 1 - 4095
|
||||
* Month: 1 - 12
|
||||
* Day: 1 - 31
|
||||
*/
|
||||
#define MOVEMENT_DEFAULT_BIRTHDATE_YEAR 0
|
||||
#define MOVEMENT_DEFAULT_BIRTHDATE_MONTH 0
|
||||
#define MOVEMENT_DEFAULT_BIRTHDATE_DAY 0
|
||||
|
||||
/* Set if using DST
|
||||
* Valid values are:
|
||||
* false: Don't allow the watch to use DST
|
||||
|
||||
Reference in New Issue
Block a user