855f2584ab
* Storage: correct replacement for "/any" path in path holder * Unit tests: storage, blocking file open test * File stream: error getter * Storage: common copy and common remove now executes in external thread * Filesystems: got rid of unused functions * Storage: untangle dependencies, ram-frendly filesystem api * iButton: context assertions * Storage: pubsub messages * Storage: wait for the file to close if it was open * Storage: fix folder copying * Storage: unit test * Storage: pubsub documentation * Fix merge error * Fix memleak in storage test * Storage: remove unused define Co-authored-by: あく <alleteam@gmail.com>
74 lines
2.5 KiB
C++
74 lines
2.5 KiB
C++
#include "ibutton_scene_read_crc_error.h"
|
|
#include "../ibutton_app.h"
|
|
#include <one_wire/maxim_crc.h>
|
|
|
|
static void dialog_ex_callback(DialogExResult result, void* context) {
|
|
furi_assert(context);
|
|
iButtonApp* app = static_cast<iButtonApp*>(context);
|
|
iButtonEvent event;
|
|
|
|
event.type = iButtonEvent::Type::EventTypeDialogResult;
|
|
event.payload.dialog_result = result;
|
|
|
|
app->get_view_manager()->send_event(&event);
|
|
}
|
|
|
|
void iButtonSceneReadCRCError::on_enter(iButtonApp* app) {
|
|
iButtonAppViewManager* view_manager = app->get_view_manager();
|
|
DialogEx* dialog_ex = view_manager->get_dialog_ex();
|
|
const uint8_t* key_data = ibutton_key_get_data_p(app->get_key());
|
|
|
|
app->set_text_store(
|
|
"%02X %02X %02X %02X %02X %02X %02X %02X\nExpected CRC: %X",
|
|
key_data[0],
|
|
key_data[1],
|
|
key_data[2],
|
|
key_data[3],
|
|
key_data[4],
|
|
key_data[5],
|
|
key_data[6],
|
|
key_data[7],
|
|
maxim_crc8(key_data, 7, MAXIM_CRC8_INIT));
|
|
|
|
dialog_ex_set_header(dialog_ex, "CRC ERROR", 64, 10, AlignCenter, AlignCenter);
|
|
dialog_ex_set_text(dialog_ex, app->get_text_store(), 64, 19, AlignCenter, AlignTop);
|
|
dialog_ex_set_left_button_text(dialog_ex, "Retry");
|
|
dialog_ex_set_right_button_text(dialog_ex, "More");
|
|
dialog_ex_set_result_callback(dialog_ex, dialog_ex_callback);
|
|
dialog_ex_set_context(dialog_ex, app);
|
|
|
|
view_manager->switch_to(iButtonAppViewManager::Type::iButtonAppViewDialogEx);
|
|
app->notify_error();
|
|
app->notify_red_on();
|
|
}
|
|
|
|
bool iButtonSceneReadCRCError::on_event(iButtonApp* app, iButtonEvent* event) {
|
|
bool consumed = false;
|
|
|
|
if(event->type == iButtonEvent::Type::EventTypeDialogResult) {
|
|
if(event->payload.dialog_result == DialogExResultRight) {
|
|
app->switch_to_next_scene(iButtonApp::Scene::SceneReadedKeyMenu);
|
|
} else {
|
|
app->switch_to_previous_scene();
|
|
}
|
|
|
|
consumed = true;
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
void iButtonSceneReadCRCError::on_exit(iButtonApp* app) {
|
|
iButtonAppViewManager* view_manager = app->get_view_manager();
|
|
DialogEx* dialog_ex = view_manager->get_dialog_ex();
|
|
|
|
app->set_text_store("");
|
|
|
|
dialog_ex_set_header(dialog_ex, NULL, 0, 0, AlignCenter, AlignCenter);
|
|
dialog_ex_set_text(dialog_ex, NULL, 0, 0, AlignCenter, AlignTop);
|
|
dialog_ex_set_left_button_text(dialog_ex, NULL);
|
|
dialog_ex_set_result_callback(dialog_ex, NULL);
|
|
dialog_ex_set_context(dialog_ex, NULL);
|
|
|
|
app->notify_red_off();
|
|
} |