forked from flipperdevices/flipperzero-firmware
-
-
Notifications
You must be signed in to change notification settings - Fork 545
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
picopass: Add wiegand parsing plugin (#205)
- Loading branch information
Showing
8 changed files
with
145 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule plugin
added at
30d5c4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#include "../picopass_i.h" | ||
#include <dolphin/dolphin.h> | ||
|
||
void picopass_scene_formats_on_enter(void* context) { | ||
Picopass* picopass = context; | ||
PluginWiegand* plugin = picopass->plugin_wiegand; | ||
PicopassDevice* dev = picopass->dev; | ||
PicopassDeviceData dev_data = dev->dev_data; | ||
PicopassPacs pacs = dev_data.pacs; | ||
|
||
FuriString* str = picopass->text_box_store; | ||
furi_string_reset(str); | ||
|
||
// Convert from byte array to uint64_t | ||
uint64_t credential = 0; | ||
memcpy(&credential, pacs.credential, sizeof(pacs.credential)); | ||
credential = __builtin_bswap64(credential); | ||
|
||
if(plugin) { | ||
FuriString* description = furi_string_alloc(); | ||
size_t format_count = plugin->count(pacs.bitLength, credential); | ||
for(size_t i = 0; i < format_count; i++) { | ||
plugin->description(pacs.bitLength, credential, i, description); | ||
|
||
furi_string_cat_printf(str, "%s\n", furi_string_get_cstr(description)); | ||
} | ||
furi_string_free(description); | ||
} | ||
|
||
text_box_set_font(picopass->text_box, TextBoxFontHex); | ||
text_box_set_text(picopass->text_box, furi_string_get_cstr(picopass->text_box_store)); | ||
view_dispatcher_switch_to_view(picopass->view_dispatcher, PicopassViewTextBox); | ||
} | ||
|
||
bool picopass_scene_formats_on_event(void* context, SceneManagerEvent event) { | ||
Picopass* picopass = context; | ||
bool consumed = false; | ||
|
||
if(event.type == SceneManagerEventTypeCustom) { | ||
if(event.event == GuiButtonTypeLeft) { | ||
consumed = scene_manager_previous_scene(picopass->scene_manager); | ||
} | ||
} else if(event.type == SceneManagerEventTypeBack) { | ||
consumed = scene_manager_previous_scene(picopass->scene_manager); | ||
} | ||
return consumed; | ||
} | ||
|
||
void picopass_scene_formats_on_exit(void* context) { | ||
Picopass* picopass = context; | ||
|
||
// Clear views | ||
text_box_reset(picopass->text_box); | ||
} |