Minor watch settings renaming

This commit is contained in:
Th3maz1ng 2023-10-15 11:04:49 +02:00
parent 5cd5080fc9
commit 7af7c7f95d
2 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@ static const WatchSettings_t defaultWatchSettings =
.notification = { .notification = {
.notification_vibration_duration = 3, .notification_vibration_duration = 3,
.notification_vibration_strength = 6, .notification_vibration_strength = 6,
.notification_vibrate_on_email = true, .notification_vibrate_on_notification_receive = true,
.notification_vibrate_on_sms = true, .notification_vibrate_on_call_receive = true,
}, },
.connectivity = { .connectivity = {
.connectivity_ble_enabled = false, .connectivity_ble_enabled = false,

View File

@ -51,8 +51,8 @@ typedef struct Activity
*/ */
typedef struct Notification typedef struct Notification
{ {
uint32_t notification_vibrate_on_sms:1, uint32_t notification_vibrate_on_notification_receive:1,
notification_vibrate_on_email:1, notification_vibrate_on_call_receive:1,
notification_vibration_strength:3, notification_vibration_strength:3,
notification_vibration_duration:3; notification_vibration_duration:3;
} Notification_t; } Notification_t;