 9c3f465afd
			
		
	
	
		9c3f465afd
		
			
		
	
	
	
	
		
			
			* FL-2537: ON/OFF buttons * FL-2539: cancelable lowbatt shutdown * FL-2534: update storage format results screen, cleanup dialog_ex usage. * FL-2534: storage setting UX rework * FL-2525: unify arrows icons * Remove unused icons * UI: Rename Ok to OK
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../ibutton_i.h"
 | |
| #include <one_wire/maxim_crc.h>
 | |
| 
 | |
| static void ibutton_scene_read_crc_error_dialog_ex_callback(DialogExResult result, void* context) {
 | |
|     iButton* ibutton = context;
 | |
|     view_dispatcher_send_custom_event(ibutton->view_dispatcher, result);
 | |
| }
 | |
| 
 | |
| void ibutton_scene_read_crc_error_on_enter(void* context) {
 | |
|     iButton* ibutton = context;
 | |
|     DialogEx* dialog_ex = ibutton->dialog_ex;
 | |
|     iButtonKey* key = ibutton->key;
 | |
|     const uint8_t* key_data = ibutton_key_get_data_p(key);
 | |
| 
 | |
|     ibutton_text_store_set(
 | |
|         ibutton,
 | |
|         "%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, ibutton->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, ibutton_scene_read_crc_error_dialog_ex_callback);
 | |
|     dialog_ex_set_context(dialog_ex, ibutton);
 | |
| 
 | |
|     view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewDialogEx);
 | |
| 
 | |
|     ibutton_notification_message(ibutton, iButtonNotificationMessageError);
 | |
|     ibutton_notification_message(ibutton, iButtonNotificationMessageRedOn);
 | |
| }
 | |
| 
 | |
| bool ibutton_scene_read_crc_error_on_event(void* context, SceneManagerEvent event) {
 | |
|     iButton* ibutton = context;
 | |
|     SceneManager* scene_manager = ibutton->scene_manager;
 | |
|     bool consumed = false;
 | |
| 
 | |
|     if(event.type == SceneManagerEventTypeCustom) {
 | |
|         consumed = true;
 | |
|         if(event.event == DialogExResultRight) {
 | |
|             scene_manager_next_scene(scene_manager, iButtonSceneReadKeyMenu);
 | |
|         } else if(event.event == DialogExResultLeft) {
 | |
|             scene_manager_previous_scene(scene_manager);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return consumed;
 | |
| }
 | |
| 
 | |
| void ibutton_scene_read_crc_error_on_exit(void* context) {
 | |
|     iButton* ibutton = context;
 | |
|     DialogEx* dialog_ex = ibutton->dialog_ex;
 | |
| 
 | |
|     ibutton_text_store_clear(ibutton);
 | |
| 
 | |
|     dialog_ex_reset(dialog_ex);
 | |
| 
 | |
|     ibutton_notification_message(ibutton, iButtonNotificationMessageRedOff);
 | |
| }
 |