[FL-3226] Deep Sleep Idle (#2569)
* Improve RNG error handling * Sync RTC shadow registers on Stop mode exit * Implement working STOP2 mode * Fix formatting * FuriHal: disable SWD pins if debug is disabled * Power: cleanup battery info view, handle zero current report from gauge * Fbt: add command line argument for extra global defines * FuriHal: cleanup debug defines in power and os, drop deep_insomnia counter. * Add a setting to disable deep sleep * Clean up furi_hal_power * FuriHal,FapLoader,Debug: implement debug in stop mode, workaround resume in stop * FuriHal: document OS and power subsystems debugging * Furi: enable debug interface on crash --------- Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
		| @@ -1,6 +1,7 @@ | ||||
| #include "fap_loader_app.h" | ||||
|  | ||||
| #include <furi.h> | ||||
| #include <furi_hal_debug.h> | ||||
|  | ||||
| #include <assets_icons.h> | ||||
| #include <gui/gui.h> | ||||
| @@ -23,8 +24,6 @@ struct FapLoader { | ||||
|     Loading* loading; | ||||
| }; | ||||
|  | ||||
| volatile bool fap_loader_debug_active = false; | ||||
|  | ||||
| bool fap_loader_load_name_and_icon( | ||||
|     FuriString* path, | ||||
|     Storage* storage, | ||||
| @@ -111,7 +110,7 @@ static bool fap_loader_run_selected_app(FapLoader* loader) { | ||||
|         FuriThread* thread = flipper_application_spawn(loader->app, NULL); | ||||
|  | ||||
|         /* This flag is set by the debugger - to break on app start */ | ||||
|         if(fap_loader_debug_active) { | ||||
|         if(furi_hal_debug_is_gdb_session_active()) { | ||||
|             FURI_LOG_W(TAG, "Triggering BP for debugger"); | ||||
|             /* After hitting this, you can set breakpoints in your .fap's code | ||||
|              * Note that you have to toggle breakpoints that were set before */ | ||||
|   | ||||
| @@ -4,8 +4,8 @@ | ||||
| #include <assets_icons.h> | ||||
| #include <locale/locale.h> | ||||
|  | ||||
| #define LOW_CHARGE_THRESHOLD 10 | ||||
| #define HIGH_DRAIN_CURRENT_THRESHOLD 100 | ||||
| #define LOW_CHARGE_THRESHOLD (10) | ||||
| #define HIGH_DRAIN_CURRENT_THRESHOLD (-100) | ||||
|  | ||||
| struct BatteryInfo { | ||||
|     View* view; | ||||
| @@ -25,14 +25,13 @@ static void draw_battery(Canvas* canvas, BatteryInfoModel* data, int x, int y) { | ||||
|     char header[20] = {}; | ||||
|     char value[20] = {}; | ||||
|  | ||||
|     int32_t drain_current = data->gauge_current * (-1000); | ||||
|     uint32_t charge_current = data->gauge_current * 1000; | ||||
|     int32_t current = 1000.0f * data->gauge_current; | ||||
|  | ||||
|     // Draw battery | ||||
|     canvas_draw_icon(canvas, x, y, &I_BatteryBody_52x28); | ||||
|     if(charge_current > 0) { | ||||
|     if(current > 0) { | ||||
|         canvas_draw_icon(canvas, x + 16, y + 7, &I_FaceCharging_29x14); | ||||
|     } else if(drain_current > HIGH_DRAIN_CURRENT_THRESHOLD) { | ||||
|     } else if(current < HIGH_DRAIN_CURRENT_THRESHOLD) { | ||||
|         canvas_draw_icon(canvas, x + 16, y + 7, &I_FaceConfused_29x14); | ||||
|     } else if(data->charge < LOW_CHARGE_THRESHOLD) { | ||||
|         canvas_draw_icon(canvas, x + 16, y + 7, &I_FaceNopower_29x14); | ||||
| @@ -44,7 +43,7 @@ static void draw_battery(Canvas* canvas, BatteryInfoModel* data, int x, int y) { | ||||
|     elements_bubble(canvas, 53, 0, 71, 39); | ||||
|  | ||||
|     // Set text | ||||
|     if(charge_current > 0) { | ||||
|     if(current > 0) { | ||||
|         snprintf(emote, sizeof(emote), "%s", "Yummy!"); | ||||
|         snprintf(header, sizeof(header), "%s", "Charging at"); | ||||
|         snprintf( | ||||
| @@ -53,34 +52,36 @@ static void draw_battery(Canvas* canvas, BatteryInfoModel* data, int x, int y) { | ||||
|             "%lu.%luV   %lumA", | ||||
|             (uint32_t)(data->vbus_voltage), | ||||
|             (uint32_t)(data->vbus_voltage * 10) % 10, | ||||
|             charge_current); | ||||
|     } else if(drain_current > 0) { | ||||
|             current); | ||||
|     } else if(current < 0) { | ||||
|         snprintf( | ||||
|             emote, | ||||
|             sizeof(emote), | ||||
|             "%s", | ||||
|             drain_current > HIGH_DRAIN_CURRENT_THRESHOLD ? "Oh no!" : "Om-nom-nom!"); | ||||
|             current < HIGH_DRAIN_CURRENT_THRESHOLD ? "Oh no!" : "Om-nom-nom!"); | ||||
|         snprintf(header, sizeof(header), "%s", "Consumption is"); | ||||
|         snprintf( | ||||
|             value, | ||||
|             sizeof(value), | ||||
|             "%ld %s", | ||||
|             drain_current, | ||||
|             drain_current > HIGH_DRAIN_CURRENT_THRESHOLD ? "mA!" : "mA"); | ||||
|     } else if(drain_current != 0) { | ||||
|         snprintf(header, 20, "..."); | ||||
|     } else if(data->charge_voltage_limit < 4.2) { | ||||
|         // Non-default battery charging limit, mention it | ||||
|         snprintf(emote, sizeof(emote), "Charged!"); | ||||
|         snprintf(header, sizeof(header), "Limited to"); | ||||
|         snprintf( | ||||
|             value, | ||||
|             sizeof(value), | ||||
|             "%lu.%luV", | ||||
|             (uint32_t)(data->charge_voltage_limit), | ||||
|             (uint32_t)(data->charge_voltage_limit * 10) % 10); | ||||
|             ABS(current), | ||||
|             current < HIGH_DRAIN_CURRENT_THRESHOLD ? "mA!" : "mA"); | ||||
|     } else if(data->vbus_voltage > 0) { | ||||
|         if(data->charge_voltage_limit < 4.2) { | ||||
|             // Non-default battery charging limit, mention it | ||||
|             snprintf(emote, sizeof(emote), "Charged!"); | ||||
|             snprintf(header, sizeof(header), "Limited to"); | ||||
|             snprintf( | ||||
|                 value, | ||||
|                 sizeof(value), | ||||
|                 "%lu.%luV", | ||||
|                 (uint32_t)(data->charge_voltage_limit), | ||||
|                 (uint32_t)(data->charge_voltage_limit * 10) % 10); | ||||
|         } else { | ||||
|             snprintf(header, sizeof(header), "Charged!"); | ||||
|         } | ||||
|     } else { | ||||
|         snprintf(header, sizeof(header), "Charged!"); | ||||
|         snprintf(header, sizeof(header), "Napping..."); | ||||
|     } | ||||
|  | ||||
|     canvas_draw_str_aligned(canvas, 92, y + 3, AlignCenter, AlignCenter, emote); | ||||
|   | ||||
| @@ -141,6 +141,21 @@ static void hand_orient_changed(VariableItem* item) { | ||||
|     loader_update_menu(); | ||||
| } | ||||
|  | ||||
| const char* const sleep_method[] = { | ||||
|     "Default", | ||||
|     "Legacy", | ||||
| }; | ||||
|  | ||||
| static void sleep_method_changed(VariableItem* item) { | ||||
|     uint8_t index = variable_item_get_current_value_index(item); | ||||
|     variable_item_set_current_value_text(item, sleep_method[index]); | ||||
|     if(index) { | ||||
|         furi_hal_rtc_set_flag(FuriHalRtcFlagLegacySleep); | ||||
|     } else { | ||||
|         furi_hal_rtc_reset_flag(FuriHalRtcFlagLegacySleep); | ||||
|     } | ||||
| } | ||||
|  | ||||
| static uint32_t system_settings_exit(void* context) { | ||||
|     UNUSED(context); | ||||
|     return VIEW_NONE; | ||||
| @@ -218,6 +233,12 @@ SystemSettings* system_settings_alloc() { | ||||
|     variable_item_set_current_value_index(item, value_index); | ||||
|     variable_item_set_current_value_text(item, heap_trace_mode_text[value_index]); | ||||
|  | ||||
|     item = variable_item_list_add( | ||||
|         app->var_item_list, "Sleep Method", COUNT_OF(sleep_method), sleep_method_changed, app); | ||||
|     value_index = furi_hal_rtc_is_flag_set(FuriHalRtcFlagLegacySleep) ? 1 : 0; | ||||
|     variable_item_set_current_value_index(item, value_index); | ||||
|     variable_item_set_current_value_text(item, sleep_method[value_index]); | ||||
|  | ||||
|     view_set_previous_callback( | ||||
|         variable_item_list_get_view(app->var_item_list), system_settings_exit); | ||||
|     view_dispatcher_add_view( | ||||
|   | ||||
		Reference in New Issue
	
	Block a user