[FL-1299] iButton fix previous scene transition #480
This commit is contained in:
@@ -31,40 +31,9 @@ bool iButtonSceneStart::on_event(iButtonApp* app, iButtonEvent* event) {
|
||||
case SubmenuIndexRead:
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneRead);
|
||||
break;
|
||||
case SubmenuIndexSaved: {
|
||||
bool res = app->get_sd_ex_api()->file_select(
|
||||
app->get_sd_ex_api()->context,
|
||||
"ibutton",
|
||||
"*",
|
||||
app->get_file_name(),
|
||||
app->get_file_name_size());
|
||||
if(res) {
|
||||
string_t key_str;
|
||||
string_init_set_str(key_str, "ibutton/");
|
||||
string_cat_str(key_str, app->get_file_name());
|
||||
File key_file;
|
||||
uint8_t key_data[IBUTTON_KEY_DATA_SIZE + 1] = {};
|
||||
// Read data from file
|
||||
// TODO handle false return
|
||||
res = app->get_fs_api()->file.open(
|
||||
&key_file, string_get_cstr(key_str), FSAM_READ, FSOM_OPEN_EXISTING);
|
||||
res = app->get_fs_api()->file.read(&key_file, key_data, IBUTTON_KEY_DATA_SIZE + 1);
|
||||
res = app->get_fs_api()->file.close(&key_file);
|
||||
string_clear(key_str);
|
||||
// Set key
|
||||
iButtonKeyType key_type = static_cast<iButtonKeyType>(key_data[0]);
|
||||
if(key_type > iButtonKeyType::KeyMetakom) {
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneStart);
|
||||
}
|
||||
app->get_key()->set_name(app->get_file_name());
|
||||
app->get_key()->set_type(key_type);
|
||||
app->get_key()->set_data(key_data + 1, IBUTTON_KEY_DATA_SIZE);
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneSavedKeyMenu);
|
||||
} else {
|
||||
// TODO add error scene
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneStart);
|
||||
}
|
||||
}; break;
|
||||
case SubmenuIndexSaved:
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneSelectKey);
|
||||
break;
|
||||
case SubmenuIndexAdd:
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneAddType);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user