2021-09-28 09:40:39 +00:00
|
|
|
#include "../desktop_i.h"
|
2021-10-04 09:33:31 +00:00
|
|
|
#include <furi-hal-version.h>
|
2021-09-28 09:40:39 +00:00
|
|
|
|
2021-10-04 09:33:31 +00:00
|
|
|
#define HW_MISMATCH_BACK_EVENT (0UL)
|
|
|
|
|
|
|
|
void desktop_scene_hw_mismatch_callback(void* context) {
|
2021-09-28 09:40:39 +00:00
|
|
|
Desktop* desktop = (Desktop*)context;
|
2021-10-04 09:33:31 +00:00
|
|
|
view_dispatcher_send_custom_event(desktop->view_dispatcher, HW_MISMATCH_BACK_EVENT);
|
2021-09-28 09:40:39 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 14:42:52 +00:00
|
|
|
void desktop_scene_hw_mismatch_on_enter(void* context) {
|
2021-09-28 09:40:39 +00:00
|
|
|
Desktop* desktop = (Desktop*)context;
|
2022-01-02 21:39:56 +00:00
|
|
|
furi_assert(desktop);
|
|
|
|
furi_assert(!desktop->text_buffer);
|
2021-10-04 09:33:31 +00:00
|
|
|
Popup* popup = desktop->hw_mismatch_popup;
|
2022-01-02 21:39:56 +00:00
|
|
|
desktop->text_buffer = furi_alloc(256);
|
2021-10-04 09:33:31 +00:00
|
|
|
snprintf(
|
2022-01-02 21:39:56 +00:00
|
|
|
desktop->text_buffer,
|
|
|
|
256,
|
2021-10-16 11:25:32 +00:00
|
|
|
"HW target: %d\nFW target: %d",
|
|
|
|
furi_hal_version_get_hw_target(),
|
|
|
|
version_get_target(NULL));
|
2021-10-04 09:33:31 +00:00
|
|
|
popup_set_context(popup, desktop);
|
2021-11-26 12:19:30 +00:00
|
|
|
popup_set_header(
|
|
|
|
popup, "!!!! HW Mismatch !!!!", 60, 14 + STATUS_BAR_Y_SHIFT, AlignCenter, AlignCenter);
|
2022-01-02 21:39:56 +00:00
|
|
|
popup_set_text(
|
|
|
|
popup, desktop->text_buffer, 60, 37 + STATUS_BAR_Y_SHIFT, AlignCenter, AlignCenter);
|
2021-10-04 09:33:31 +00:00
|
|
|
popup_set_callback(popup, desktop_scene_hw_mismatch_callback);
|
2021-09-28 09:40:39 +00:00
|
|
|
view_dispatcher_switch_to_view(desktop->view_dispatcher, DesktopViewHwMismatch);
|
|
|
|
}
|
|
|
|
|
2021-09-28 14:42:52 +00:00
|
|
|
bool desktop_scene_hw_mismatch_on_event(void* context, SceneManagerEvent event) {
|
2021-09-28 09:40:39 +00:00
|
|
|
Desktop* desktop = (Desktop*)context;
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
switch(event.event) {
|
2021-10-04 09:33:31 +00:00
|
|
|
case HW_MISMATCH_BACK_EVENT:
|
2021-09-28 09:40:39 +00:00
|
|
|
scene_manager_previous_scene(desktop->scene_manager);
|
|
|
|
consumed = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
2021-09-28 14:42:52 +00:00
|
|
|
void desktop_scene_hw_mismatch_on_exit(void* context) {
|
2021-10-04 09:33:31 +00:00
|
|
|
Desktop* desktop = (Desktop*)context;
|
2022-01-02 21:39:56 +00:00
|
|
|
furi_assert(desktop);
|
|
|
|
furi_assert(desktop->text_buffer);
|
2021-10-04 09:33:31 +00:00
|
|
|
Popup* popup = desktop->hw_mismatch_popup;
|
|
|
|
popup_set_header(popup, NULL, 0, 0, AlignCenter, AlignBottom);
|
|
|
|
popup_set_text(popup, NULL, 0, 0, AlignCenter, AlignTop);
|
|
|
|
popup_set_callback(popup, NULL);
|
|
|
|
popup_set_context(popup, NULL);
|
2022-01-02 21:39:56 +00:00
|
|
|
free(desktop->text_buffer);
|
|
|
|
desktop->text_buffer = NULL;
|
2021-09-28 09:40:39 +00:00
|
|
|
}
|