├── .ci_files └── anims_ofw.txt ├── .clang-format ├── .drone.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ ├── 02_enhancements.yml │ ├── 03_feature_request.yml │ └── config.yml └── pull_request_template.md ├── .gitignore ├── .gitmodules ├── .pvsconfig ├── .pvsoptions ├── .vscode ├── .gitignore ├── ReadMe.md ├── example │ ├── c_cpp_properties.json │ ├── launch.json │ ├── settings.json │ └── tasks.json └── extensions.json ├── Brewfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CODING_STYLE.md ├── CONTRIBUTING.md ├── GAMES_ONLY.md ├── LICENSE ├── MACOS_GUIDE.md ├── Makefile ├── RM11301557-0.72.1-d9de018.tgz ├── RM11301557-0.72.1-d9de018.zip ├── ReadMe.md ├── RoadMap.md ├── SConstruct ├── SUPPORT.md ├── applications ├── ReadMe.md ├── debug │ ├── accessor │ │ ├── accessor.cpp │ │ ├── accessor_app.cpp │ │ ├── accessor_app.h │ │ ├── accessor_event.h │ │ ├── accessor_view_manager.cpp │ │ ├── accessor_view_manager.h │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── wiegand.cpp │ │ │ └── wiegand.h │ │ └── scene │ │ │ ├── accessor_scene_generic.h │ │ │ ├── accessor_scene_start.cpp │ │ │ └── accessor_scene_start.h │ ├── application.fam │ ├── battery_test_app │ │ ├── application.fam │ │ ├── battery_test_app.c │ │ └── battery_test_app.h │ ├── blink_test │ │ ├── application.fam │ │ └── blink_test.c │ ├── bt_debug_app │ │ ├── application.fam │ │ ├── bt_debug_app.c │ │ ├── bt_debug_app.h │ │ └── views │ │ │ ├── bt_carrier_test.c │ │ │ ├── bt_carrier_test.h │ │ │ ├── bt_packet_test.c │ │ │ ├── bt_packet_test.h │ │ │ ├── bt_test.c │ │ │ ├── bt_test.h │ │ │ └── bt_test_types.h │ ├── display_test │ │ ├── application.fam │ │ ├── display_test.c │ │ ├── display_test.h │ │ ├── view_display_test.c │ │ └── view_display_test.h │ ├── file_browser_test │ │ ├── application.fam │ │ ├── file_browser_app.c │ │ ├── file_browser_app_i.h │ │ ├── icons │ │ │ └── badusb_10px.png │ │ └── scenes │ │ │ ├── file_browser_scene.c │ │ │ ├── file_browser_scene.h │ │ │ ├── file_browser_scene_browser.c │ │ │ ├── file_browser_scene_config.h │ │ │ ├── file_browser_scene_result.c │ │ │ └── file_browser_scene_start.c │ ├── keypad_test │ │ ├── application.fam │ │ └── keypad_test.c │ ├── lfrfid_debug │ │ ├── application.fam │ │ ├── lfrfid_debug.c │ │ ├── lfrfid_debug_i.h │ │ ├── scenes │ │ │ ├── lfrfid_debug_app_scene_start.c │ │ │ ├── lfrfid_debug_app_scene_tune.c │ │ │ ├── lfrfid_debug_scene.c │ │ │ ├── lfrfid_debug_scene.h │ │ │ └── lfrfid_debug_scene_config.h │ │ └── views │ │ │ ├── lfrfid_debug_view_tune.c │ │ │ └── lfrfid_debug_view_tune.h │ ├── rpc_debug_app │ │ ├── application.fam │ │ ├── rpc_debug_app.c │ │ ├── rpc_debug_app.h │ │ └── scenes │ │ │ ├── rpc_debug_app_scene.c │ │ │ ├── rpc_debug_app_scene.h │ │ │ ├── rpc_debug_app_scene_config.h │ │ │ ├── rpc_debug_app_scene_input_data_exchange.c │ │ │ ├── rpc_debug_app_scene_input_error_code.c │ │ │ ├── rpc_debug_app_scene_input_error_text.c │ │ │ ├── rpc_debug_app_scene_receive_data_exchange.c │ │ │ ├── rpc_debug_app_scene_start.c │ │ │ ├── rpc_debug_app_scene_start_dummy.c │ │ │ ├── rpc_debug_app_scene_test_app_error.c │ │ │ └── rpc_debug_app_scene_test_data_exchange.c │ ├── text_box_test │ │ ├── application.fam │ │ └── text_box_test.c │ ├── uart_echo │ │ ├── application.fam │ │ ├── uart_10px.png │ │ └── uart_echo.c │ ├── unit_tests │ │ ├── application.fam │ │ ├── flipper_format │ │ │ ├── flipper_format_string_test.c │ │ │ └── flipper_format_test.c │ │ ├── furi │ │ │ ├── furi_memmgr_test.c │ │ │ ├── furi_pubsub_test.c │ │ │ ├── furi_record_test.c │ │ │ ├── furi_string_test.c │ │ │ ├── furi_test.c │ │ │ └── furi_valuemutex_test.c │ │ ├── infrared │ │ │ └── infrared_test.c │ │ ├── lfrfid │ │ │ ├── bit_lib_test.c │ │ │ └── lfrfid_protocols.c │ │ ├── minunit.h │ │ ├── minunit_vars.h │ │ ├── minunit_vars_ex.h │ │ ├── nfc │ │ │ └── nfc_test.c │ │ ├── protocol_dict │ │ │ └── protocol_dict_test.c │ │ ├── rpc │ │ │ └── rpc_test.c │ │ ├── storage │ │ │ ├── dirwalk_test.c │ │ │ └── storage_test.c │ │ ├── stream │ │ │ └── stream_test.c │ │ ├── subghz │ │ │ └── subghz_test.c │ │ ├── test_index.c │ │ └── varint │ │ │ └── varint_test.c │ ├── usb_mouse │ │ ├── application.fam │ │ └── usb_mouse.c │ ├── usb_test │ │ ├── application.fam │ │ └── usb_test.c │ └── vibro_test │ │ ├── application.fam │ │ └── vibro_test.c ├── examples │ ├── application.fam │ └── example_images │ │ ├── ReadMe.md │ │ ├── application.fam │ │ ├── example_images.c │ │ └── images │ │ └── dolphin_71x25.png ├── main │ ├── application.fam │ ├── archive │ │ ├── application.fam │ │ ├── archive.c │ │ ├── archive.h │ │ ├── archive_i.h │ │ ├── helpers │ │ │ ├── archive_apps.c │ │ │ ├── archive_apps.h │ │ │ ├── archive_browser.c │ │ │ ├── archive_browser.h │ │ │ ├── archive_favorites.c │ │ │ ├── archive_favorites.h │ │ │ ├── archive_files.c │ │ │ ├── archive_files.h │ │ │ └── archive_menu.h │ │ ├── scenes │ │ │ ├── archive_scene.c │ │ │ ├── archive_scene.h │ │ │ ├── archive_scene_browser.c │ │ │ ├── archive_scene_config.h │ │ │ ├── archive_scene_delete.c │ │ │ ├── archive_scene_info.c │ │ │ ├── archive_scene_rename.c │ │ │ └── archive_scene_show.c │ │ └── views │ │ │ ├── archive_browser_view.c │ │ │ └── archive_browser_view.h │ ├── bad_usb │ │ ├── application.fam │ │ ├── bad_usb_app.c │ │ ├── bad_usb_app.h │ │ ├── bad_usb_app_i.h │ │ ├── bad_usb_script.c │ │ ├── bad_usb_script.h │ │ ├── bad_usb_settings_filename.h │ │ ├── badusb_10px.png │ │ ├── images │ │ │ ├── ActiveConnection_50x64.png │ │ │ ├── Clock_18x18.png │ │ │ ├── Error_18x18.png │ │ │ ├── EviSmile1_18x21.png │ │ │ ├── EviSmile2_18x21.png │ │ │ ├── EviWaiting1_18x21.png │ │ │ ├── EviWaiting2_18x21.png │ │ │ ├── Percent_10x14.png │ │ │ ├── SDQuestion_35x43.png │ │ │ ├── Smile_18x18.png │ │ │ ├── UsbTree_48x22.png │ │ │ ├── badusb_10px.png │ │ │ └── keyboard_10px.png │ │ ├── scenes │ │ │ ├── bad_usb_scene.c │ │ │ ├── bad_usb_scene.h │ │ │ ├── bad_usb_scene_config.c │ │ │ ├── bad_usb_scene_config.h │ │ │ ├── bad_usb_scene_config_layout.c │ │ │ ├── bad_usb_scene_error.c │ │ │ ├── bad_usb_scene_file_select.c │ │ │ └── bad_usb_scene_work.c │ │ └── views │ │ │ ├── bad_usb_view.c │ │ │ └── bad_usb_view.h │ ├── bad_usb_loader │ │ ├── application.fam │ │ └── bad_usb_loader_app.c │ ├── clock │ │ ├── ClockIcon.png │ │ ├── application.fam │ │ ├── clock_app.c │ │ └── icons │ │ │ ├── EviSmile1_18x21.png │ │ │ ├── EviSmile2_18x21.png │ │ │ ├── EviWaiting1_18x21.png │ │ │ ├── EviWaiting2_18x21.png │ │ │ ├── G0ku.png │ │ │ ├── GameMode_11x8.png │ │ │ ├── HappyFlipper_128x64.png │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── g0ku_1.png │ │ │ ├── g0ku_2.png │ │ │ └── g0ku_3.png │ ├── clock_loader │ │ ├── application.fam │ │ └── clock_loader_app.c │ ├── fap_loader │ │ ├── application.fam │ │ ├── elf_cpp │ │ │ ├── compilesort.hpp │ │ │ ├── elf_hashtable.cpp │ │ │ ├── elf_hashtable.h │ │ │ ├── elf_hashtable_checks.hpp │ │ │ └── elf_hashtable_entry.h │ │ ├── fap_loader_app.c │ │ └── fap_loader_app.h │ ├── gpio │ │ ├── application.fam │ │ ├── gpioIcon.png │ │ ├── gpio_app.c │ │ ├── gpio_app.h │ │ ├── gpio_app_i.h │ │ ├── gpio_custom_event.h │ │ ├── gpio_i2c_scanner_control.c │ │ ├── gpio_i2c_scanner_control.h │ │ ├── gpio_i2c_sfp_control.c │ │ ├── gpio_i2c_sfp_control.h │ │ ├── gpio_item.c │ │ ├── gpio_item.h │ │ ├── images │ │ │ ├── ActiveConnection_50x64.png │ │ │ ├── ArrowDownEmpty_14x15.png │ │ │ ├── ArrowDownFilled_14x15.png │ │ │ ├── ArrowUpEmpty_14x15.png │ │ │ └── ArrowUpFilled_14x15.png │ │ ├── scenes │ │ │ ├── gpio_scene.c │ │ │ ├── gpio_scene.h │ │ │ ├── gpio_scene_config.h │ │ │ ├── gpio_scene_i2c_scanner.c │ │ │ ├── gpio_scene_i2c_sfp.c │ │ │ ├── gpio_scene_start.c │ │ │ ├── gpio_scene_test.c │ │ │ ├── gpio_scene_usb_uart.c │ │ │ ├── gpio_scene_usb_uart_close_rpc.c │ │ │ └── gpio_scene_usb_uart_config.c │ │ ├── usb_uart_bridge.c │ │ ├── usb_uart_bridge.h │ │ └── views │ │ │ ├── gpio_i2c_scanner.c │ │ │ ├── gpio_i2c_scanner.h │ │ │ ├── gpio_i2c_sfp.c │ │ │ ├── gpio_i2c_sfp.h │ │ │ ├── gpio_test.c │ │ │ ├── gpio_test.h │ │ │ ├── gpio_usb_uart.c │ │ │ └── gpio_usb_uart.h │ ├── gpio_loader │ │ ├── application.fam │ │ └── gpio_loader_app.c │ ├── ibutton │ │ ├── application.fam │ │ ├── iBIcon.png │ │ ├── ibutton.c │ │ ├── ibutton.h │ │ ├── ibutton_custom_event.h │ │ ├── ibutton_i.h │ │ ├── images │ │ │ ├── DolphinMafia_115x62.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── DolphinReadingSuccess_59x63.png │ │ │ ├── DolphinWait_61x59.png │ │ │ ├── iButtonDolphinVerySuccess_108x52.png │ │ │ ├── iButtonKey_49x44.png │ │ │ └── ibutt_10px.png │ │ └── scenes │ │ │ ├── ibutton_scene.c │ │ │ ├── ibutton_scene.h │ │ │ ├── ibutton_scene_add_type.c │ │ │ ├── ibutton_scene_add_value.c │ │ │ ├── ibutton_scene_config.h │ │ │ ├── ibutton_scene_delete_confirm.c │ │ │ ├── ibutton_scene_delete_success.c │ │ │ ├── ibutton_scene_emulate.c │ │ │ ├── ibutton_scene_exit_confirm.c │ │ │ ├── ibutton_scene_info.c │ │ │ ├── ibutton_scene_read.c │ │ │ ├── ibutton_scene_read_crc_error.c │ │ │ ├── ibutton_scene_read_key_menu.c │ │ │ ├── ibutton_scene_read_not_key_error.c │ │ │ ├── ibutton_scene_read_success.c │ │ │ ├── ibutton_scene_retry_confirm.c │ │ │ ├── ibutton_scene_rpc.c │ │ │ ├── ibutton_scene_save_name.c │ │ │ ├── ibutton_scene_save_success.c │ │ │ ├── ibutton_scene_saved_key_menu.c │ │ │ ├── ibutton_scene_select_key.c │ │ │ ├── ibutton_scene_start.c │ │ │ ├── ibutton_scene_write.c │ │ │ └── ibutton_scene_write_success.c │ ├── ibutton_loader │ │ ├── application.fam │ │ └── ibutton_loader_app.c │ ├── infrared │ │ ├── application.fam │ │ ├── images │ │ │ ├── DolphinMafia_115x62.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── DolphinReadingSuccess_59x63.png │ │ │ ├── Down_25x27.png │ │ │ ├── Down_hvr_25x27.png │ │ │ ├── InfraredArrowDown_4x8.png │ │ │ ├── InfraredArrowUp_4x8.png │ │ │ ├── InfraredLearnShort_128x31.png │ │ │ ├── Mode_25x27.png │ │ │ ├── Mode_hvr_25x27.png │ │ │ ├── Mute_25x27.png │ │ │ ├── Mute_hvr_25x27.png │ │ │ ├── Pin_back_arrow_10x8.png │ │ │ ├── Power_25x27.png │ │ │ ├── Power_hvr_25x27.png │ │ │ ├── RFIDDolphinSend_97x61.png │ │ │ ├── Rotate_25x27.png │ │ │ ├── Rotate_hvr_25x27.png │ │ │ ├── SDQuestion_35x43.png │ │ │ ├── Swing_25x27.png │ │ │ ├── Swing_hvr_25x27.png │ │ │ ├── Timer_25x27.png │ │ │ ├── Timer_hvr_25x27.png │ │ │ ├── Up_25x27.png │ │ │ ├── Up_hvr_25x27.png │ │ │ ├── Vol_down_25x27.png │ │ │ ├── Vol_down_hvr_25x27.png │ │ │ ├── Vol_up_25x27.png │ │ │ ├── Vol_up_hvr_25x27.png │ │ │ └── ir_10px.png │ │ ├── infrared.c │ │ ├── infrared.h │ │ ├── infrared_brute_force.c │ │ ├── infrared_brute_force.h │ │ ├── infrared_custom_event.h │ │ ├── infrared_i.h │ │ ├── infrared_remote.c │ │ ├── infrared_remote.h │ │ ├── infrared_remote_button.c │ │ ├── infrared_remote_button.h │ │ ├── infrared_signal.c │ │ ├── infrared_signal.h │ │ ├── ir_10px.png │ │ ├── scenes │ │ │ ├── common │ │ │ │ ├── infrared_scene_universal_common.c │ │ │ │ └── infrared_scene_universal_common.h │ │ │ ├── infrared_scene.c │ │ │ ├── infrared_scene.h │ │ │ ├── infrared_scene_ask_back.c │ │ │ ├── infrared_scene_ask_retry.c │ │ │ ├── infrared_scene_config.h │ │ │ ├── infrared_scene_debug.c │ │ │ ├── infrared_scene_edit.c │ │ │ ├── infrared_scene_edit_button_select.c │ │ │ ├── infrared_scene_edit_delete.c │ │ │ ├── infrared_scene_edit_delete_done.c │ │ │ ├── infrared_scene_edit_rename.c │ │ │ ├── infrared_scene_edit_rename_done.c │ │ │ ├── infrared_scene_error_databases.c │ │ │ ├── infrared_scene_learn.c │ │ │ ├── infrared_scene_learn_done.c │ │ │ ├── infrared_scene_learn_enter_name.c │ │ │ ├── infrared_scene_learn_success.c │ │ │ ├── infrared_scene_remote.c │ │ │ ├── infrared_scene_remote_list.c │ │ │ ├── infrared_scene_rpc.c │ │ │ ├── infrared_scene_start.c │ │ │ ├── infrared_scene_universal.c │ │ │ ├── infrared_scene_universal_ac.c │ │ │ ├── infrared_scene_universal_audio.c │ │ │ ├── infrared_scene_universal_fan.c │ │ │ ├── infrared_scene_universal_projector.c │ │ │ └── infrared_scene_universal_tv.c │ │ └── views │ │ │ ├── infrared_debug_view.c │ │ │ ├── infrared_debug_view.h │ │ │ ├── infrared_progress_view.c │ │ │ └── infrared_progress_view.h │ ├── infrared_loader │ │ ├── application.fam │ │ └── infrared_loader_app.c │ ├── lfrfid │ │ ├── 125_10px.png │ │ ├── application.fam │ │ ├── images │ │ │ ├── 125_10px.png │ │ │ ├── ButtonRight_4x7.png │ │ │ ├── DolphinCommon_56x48.png │ │ │ ├── DolphinMafia_115x62.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── NFC_manual_60x50.png │ │ │ ├── RFIDDolphinReceive_97x61.png │ │ │ ├── RFIDDolphinSend_97x61.png │ │ │ ├── RFIDDolphinSuccess_108x57.png │ │ │ ├── RFIDSmallChip_14x14.png │ │ │ ├── Round_loader_8x8 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ ├── frame_04.png │ │ │ │ ├── frame_05.png │ │ │ │ └── frame_rate │ │ │ └── SDQuestion_35x43.png │ │ ├── lfrfid.c │ │ ├── lfrfid_i.h │ │ ├── scenes │ │ │ ├── lfrfid_scene.c │ │ │ ├── lfrfid_scene.h │ │ │ ├── lfrfid_scene_config.h │ │ │ ├── lfrfid_scene_delete_confirm.c │ │ │ ├── lfrfid_scene_delete_success.c │ │ │ ├── lfrfid_scene_emulate.c │ │ │ ├── lfrfid_scene_exit_confirm.c │ │ │ ├── lfrfid_scene_extra_actions.c │ │ │ ├── lfrfid_scene_raw_info.c │ │ │ ├── lfrfid_scene_raw_name.c │ │ │ ├── lfrfid_scene_raw_read.c │ │ │ ├── lfrfid_scene_raw_success.c │ │ │ ├── lfrfid_scene_read.c │ │ │ ├── lfrfid_scene_read_key_menu.c │ │ │ ├── lfrfid_scene_read_success.c │ │ │ ├── lfrfid_scene_retry_confirm.c │ │ │ ├── lfrfid_scene_rpc.c │ │ │ ├── lfrfid_scene_save_data.c │ │ │ ├── lfrfid_scene_save_name.c │ │ │ ├── lfrfid_scene_save_success.c │ │ │ ├── lfrfid_scene_save_type.c │ │ │ ├── lfrfid_scene_saved_info.c │ │ │ ├── lfrfid_scene_saved_key_menu.c │ │ │ ├── lfrfid_scene_select_key.c │ │ │ ├── lfrfid_scene_start.c │ │ │ ├── lfrfid_scene_write.c │ │ │ └── lfrfid_scene_write_success.c │ │ └── views │ │ │ ├── lfrfid_view_read.c │ │ │ └── lfrfid_view_read.h │ ├── lfrfid_loader │ │ ├── application.fam │ │ └── lfrfid_loader_app.c │ ├── nfc │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── nfc_custom_event.h │ │ │ ├── nfc_emv_parser.c │ │ │ ├── nfc_emv_parser.h │ │ │ ├── nfc_generators.c │ │ │ └── nfc_generators.h │ │ ├── nfc.c │ │ ├── nfc.h │ │ ├── nfc_cli.c │ │ ├── nfc_i.h │ │ ├── scenes │ │ │ ├── nfc_scene.c │ │ │ ├── nfc_scene.h │ │ │ ├── nfc_scene_config.h │ │ │ ├── nfc_scene_debug.c │ │ │ ├── nfc_scene_delete.c │ │ │ ├── nfc_scene_delete_success.c │ │ │ ├── nfc_scene_detect_reader.c │ │ │ ├── nfc_scene_device_info.c │ │ │ ├── nfc_scene_dict_not_found.c │ │ │ ├── nfc_scene_emulate_apdu_sequence.c │ │ │ ├── nfc_scene_emulate_nfcv.c │ │ │ ├── nfc_scene_emulate_uid.c │ │ │ ├── nfc_scene_emv_menu.c │ │ │ ├── nfc_scene_emv_read_success.c │ │ │ ├── nfc_scene_exit_confirm.c │ │ │ ├── nfc_scene_extra_actions.c │ │ │ ├── nfc_scene_field.c │ │ │ ├── nfc_scene_file_select.c │ │ │ ├── nfc_scene_generate_info.c │ │ │ ├── nfc_scene_mf_classic_dict_attack.c │ │ │ ├── nfc_scene_mf_classic_emulate.c │ │ │ ├── nfc_scene_mf_classic_keys.c │ │ │ ├── nfc_scene_mf_classic_keys_add.c │ │ │ ├── nfc_scene_mf_classic_keys_delete.c │ │ │ ├── nfc_scene_mf_classic_keys_list.c │ │ │ ├── nfc_scene_mf_classic_keys_warn_duplicate.c │ │ │ ├── nfc_scene_mf_classic_menu.c │ │ │ ├── nfc_scene_mf_classic_read_success.c │ │ │ ├── nfc_scene_mf_classic_update.c │ │ │ ├── nfc_scene_mf_classic_update_success.c │ │ │ ├── nfc_scene_mf_classic_write.c │ │ │ ├── nfc_scene_mf_classic_write_fail.c │ │ │ ├── nfc_scene_mf_classic_write_success.c │ │ │ ├── nfc_scene_mf_classic_wrong_card.c │ │ │ ├── nfc_scene_mf_desfire_app.c │ │ │ ├── nfc_scene_mf_desfire_data.c │ │ │ ├── nfc_scene_mf_desfire_menu.c │ │ │ ├── nfc_scene_mf_desfire_read_success.c │ │ │ ├── nfc_scene_mf_ultralight_data.c │ │ │ ├── nfc_scene_mf_ultralight_emulate.c │ │ │ ├── nfc_scene_mf_ultralight_key_input.c │ │ │ ├── nfc_scene_mf_ultralight_menu.c │ │ │ ├── nfc_scene_mf_ultralight_read_auth.c │ │ │ ├── nfc_scene_mf_ultralight_read_auth_result.c │ │ │ ├── nfc_scene_mf_ultralight_read_success.c │ │ │ ├── nfc_scene_mf_ultralight_unlock_auto.c │ │ │ ├── nfc_scene_mf_ultralight_unlock_menu.c │ │ │ ├── nfc_scene_mf_ultralight_unlock_warn.c │ │ │ ├── nfc_scene_mfkey_complete.c │ │ │ ├── nfc_scene_mfkey_nonces_info.c │ │ │ ├── nfc_scene_nfc_data_info.c │ │ │ ├── nfc_scene_nfca_menu.c │ │ │ ├── nfc_scene_nfca_read_success.c │ │ │ ├── nfc_scene_nfcv_key_input.c │ │ │ ├── nfc_scene_nfcv_menu.c │ │ │ ├── nfc_scene_nfcv_unlock.c │ │ │ ├── nfc_scene_nfcv_unlock_menu.c │ │ │ ├── nfc_scene_passport_auth.c │ │ │ ├── nfc_scene_passport_auth_save_name.c │ │ │ ├── nfc_scene_passport_date.c │ │ │ ├── nfc_scene_passport_docnr.c │ │ │ ├── nfc_scene_passport_menu.c │ │ │ ├── nfc_scene_passport_pace_todo.c │ │ │ ├── nfc_scene_passport_read.c │ │ │ ├── nfc_scene_passport_read_auth.c │ │ │ ├── nfc_scene_read.c │ │ │ ├── nfc_scene_read_card_success.c │ │ │ ├── nfc_scene_read_card_type.c │ │ │ ├── nfc_scene_restore_original.c │ │ │ ├── nfc_scene_restore_original_confirm.c │ │ │ ├── nfc_scene_retry_confirm.c │ │ │ ├── nfc_scene_rpc.c │ │ │ ├── nfc_scene_save_name.c │ │ │ ├── nfc_scene_save_success.c │ │ │ ├── nfc_scene_saved_menu.c │ │ │ ├── nfc_scene_set_atqa.c │ │ │ ├── nfc_scene_set_sak.c │ │ │ ├── nfc_scene_set_type.c │ │ │ ├── nfc_scene_set_uid.c │ │ │ └── nfc_scene_start.c │ │ └── views │ │ │ ├── detect_reader.c │ │ │ ├── detect_reader.h │ │ │ ├── dict_attack.c │ │ │ └── dict_attack.h │ ├── subghz │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── subghz_chat.c │ │ │ ├── subghz_chat.h │ │ │ ├── subghz_custom_event.h │ │ │ ├── subghz_frequency_analyzer_worker.c │ │ │ ├── subghz_frequency_analyzer_worker.h │ │ │ ├── subghz_testing.c │ │ │ ├── subghz_testing.h │ │ │ └── subghz_types.h │ │ ├── scenes │ │ │ ├── subghz_scene.c │ │ │ ├── subghz_scene.h │ │ │ ├── subghz_scene_config.h │ │ │ ├── subghz_scene_decode_raw.c │ │ │ ├── subghz_scene_delete.c │ │ │ ├── subghz_scene_delete_raw.c │ │ │ ├── subghz_scene_delete_success.c │ │ │ ├── subghz_scene_frequency_analyzer.c │ │ │ ├── subghz_scene_more_raw.c │ │ │ ├── subghz_scene_need_saving.c │ │ │ ├── subghz_scene_read_raw.c │ │ │ ├── subghz_scene_receiver.c │ │ │ ├── subghz_scene_receiver_config.c │ │ │ ├── subghz_scene_receiver_info.c │ │ │ ├── subghz_scene_rpc.c │ │ │ ├── subghz_scene_save_name.c │ │ │ ├── subghz_scene_save_success.c │ │ │ ├── subghz_scene_saved.c │ │ │ ├── subghz_scene_saved_menu.c │ │ │ ├── subghz_scene_set_cnt_bft.c │ │ │ ├── subghz_scene_set_cnt_faac_433.c │ │ │ ├── subghz_scene_set_cnt_faac_868.c │ │ │ ├── subghz_scene_set_fix_bft.c │ │ │ ├── subghz_scene_set_fix_faac_433.c │ │ │ ├── subghz_scene_set_fix_faac_868.c │ │ │ ├── subghz_scene_set_seed_bft.c │ │ │ ├── subghz_scene_set_seed_faac_433.c │ │ │ ├── subghz_scene_set_seed_faac_868.c │ │ │ ├── subghz_scene_set_type.c │ │ │ ├── subghz_scene_show_error.c │ │ │ ├── subghz_scene_show_error_sub.c │ │ │ ├── subghz_scene_show_only_rx.c │ │ │ ├── subghz_scene_start.c │ │ │ ├── subghz_scene_test.c │ │ │ ├── subghz_scene_test_carrier.c │ │ │ ├── subghz_scene_test_packet.c │ │ │ ├── subghz_scene_test_static.c │ │ │ └── subghz_scene_transmitter.c │ │ ├── subghz.c │ │ ├── subghz.h │ │ ├── subghz_cli.c │ │ ├── subghz_cli.h │ │ ├── subghz_history.c │ │ ├── subghz_history.h │ │ ├── subghz_history_private.h │ │ ├── subghz_i.c │ │ ├── subghz_i.h │ │ ├── subghz_last_settings.c │ │ ├── subghz_last_settings.h │ │ └── views │ │ │ ├── receiver.c │ │ │ ├── receiver.h │ │ │ ├── subghz_frequency_analyzer.c │ │ │ ├── subghz_frequency_analyzer.h │ │ │ ├── subghz_read_raw.c │ │ │ ├── subghz_read_raw.h │ │ │ ├── subghz_test_carrier.c │ │ │ ├── subghz_test_carrier.h │ │ │ ├── subghz_test_packet.c │ │ │ ├── subghz_test_packet.h │ │ │ ├── subghz_test_static.c │ │ │ ├── subghz_test_static.h │ │ │ ├── transmitter.c │ │ │ └── transmitter.h │ ├── u2f │ │ ├── U2FIcon.png │ │ ├── application.fam │ │ ├── images │ │ │ ├── ActiveConnection_50x64.png │ │ │ ├── Auth_62x31.png │ │ │ ├── Connect_me_62x31.png │ │ │ ├── Connected_62x31.png │ │ │ ├── Drive_112x35.png │ │ │ ├── Error_62x31.png │ │ │ └── SDQuestion_35x43.png │ │ ├── scenes │ │ │ ├── u2f_scene.c │ │ │ ├── u2f_scene.h │ │ │ ├── u2f_scene_config.h │ │ │ ├── u2f_scene_error.c │ │ │ └── u2f_scene_main.c │ │ ├── u2f.c │ │ ├── u2f.h │ │ ├── u2f_app.c │ │ ├── u2f_app.h │ │ ├── u2f_app_i.h │ │ ├── u2f_data.c │ │ ├── u2f_data.h │ │ ├── u2f_hid.c │ │ ├── u2f_hid.h │ │ └── views │ │ │ ├── u2f_view.c │ │ │ └── u2f_view.h │ ├── u2f_loader │ │ ├── application.fam │ │ └── u2f_loader_app.c │ ├── unirfremix │ │ ├── application.fam │ │ ├── images │ │ │ ├── ButtonDown_7x4.png │ │ │ ├── ButtonLeft_4x7.png │ │ │ ├── ButtonRight_4x7.png │ │ │ ├── ButtonUp_7x4.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Pin_arrow_down_7x9.png │ │ │ ├── Pin_arrow_left_9x7.png │ │ │ ├── Pin_arrow_right_9x7.png │ │ │ ├── Pin_arrow_up_7x9.png │ │ │ ├── Pin_cell_13x13.png │ │ │ ├── Pin_star_7x7.png │ │ │ ├── back_10px.png │ │ │ └── sub1_10px.png │ │ ├── unirfIcon.png │ │ └── unirfremix_app.c │ └── unirfremix_loader │ │ ├── application.fam │ │ └── unirfremix_loader_app.c ├── plugins │ ├── airmouse │ │ ├── LICENSE │ │ ├── README.md │ │ ├── air_mouse.c │ │ ├── air_mouse.h │ │ ├── application.fam │ │ ├── mouse_10px.png │ │ ├── tracking │ │ │ ├── calibration_data.cc │ │ │ ├── calibration_data.h │ │ │ ├── imu │ │ │ │ ├── bmi160.c │ │ │ │ ├── bmi160.h │ │ │ │ ├── bmi160_defs.h │ │ │ │ ├── imu.c │ │ │ │ ├── imu.h │ │ │ │ ├── imu_bmi160.c │ │ │ │ ├── imu_lsm6ds3trc.c │ │ │ │ ├── lsm6ds3tr_c_reg.c │ │ │ │ └── lsm6ds3tr_c_reg.h │ │ │ ├── main_loop.cc │ │ │ ├── main_loop.h │ │ │ ├── orientation_tracker.cc │ │ │ ├── orientation_tracker.h │ │ │ ├── sensors │ │ │ │ ├── accelerometer_data.h │ │ │ │ ├── gyroscope_bias_estimator.cc │ │ │ │ ├── gyroscope_bias_estimator.h │ │ │ │ ├── gyroscope_data.h │ │ │ │ ├── lowpass_filter.cc │ │ │ │ ├── lowpass_filter.h │ │ │ │ ├── mean_filter.cc │ │ │ │ ├── mean_filter.h │ │ │ │ ├── median_filter.cc │ │ │ │ ├── median_filter.h │ │ │ │ ├── pose_prediction.cc │ │ │ │ ├── pose_prediction.h │ │ │ │ ├── pose_state.h │ │ │ │ ├── sensor_fusion_ekf.cc │ │ │ │ └── sensor_fusion_ekf.h │ │ │ └── util │ │ │ │ ├── logging.h │ │ │ │ ├── matrix_3x3.cc │ │ │ │ ├── matrix_3x3.h │ │ │ │ ├── matrix_4x4.cc │ │ │ │ ├── matrix_4x4.h │ │ │ │ ├── matrixutils.cc │ │ │ │ ├── matrixutils.h │ │ │ │ ├── rotation.cc │ │ │ │ ├── rotation.h │ │ │ │ ├── vector.h │ │ │ │ ├── vectorutils.cc │ │ │ │ └── vectorutils.h │ │ └── views │ │ │ ├── bt_mouse.c │ │ │ ├── bt_mouse.h │ │ │ ├── calibration.c │ │ │ ├── calibration.h │ │ │ ├── usb_mouse.c │ │ │ └── usb_mouse.h │ ├── am2320_temp_sensor │ │ ├── application.fam │ │ ├── temperature_sensor.c │ │ └── temperature_sensor.png │ ├── application.fam │ ├── arkanoid │ │ ├── application.fam │ │ ├── arkanoid_10px.png │ │ └── arkanoid_game.c │ ├── badapple │ │ ├── application.fam │ │ ├── bad_apple.c │ │ ├── bad_apple.h │ │ ├── video_player.c │ │ └── video_player.h │ ├── barcode_generator │ │ ├── application.fam │ │ ├── barcode_10px.png │ │ ├── barcode_generator.c │ │ └── barcode_generator.h │ ├── blackjack │ │ ├── application.fam │ │ ├── assets │ │ │ ├── blackjack.png │ │ │ ├── card_graphics.png │ │ │ └── endscreen.png │ │ ├── blackjack.c │ │ ├── blackjack_10px.png │ │ ├── common │ │ │ ├── card.c │ │ │ ├── card.h │ │ │ ├── dml.c │ │ │ ├── dml.h │ │ │ ├── menu.c │ │ │ ├── menu.h │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── ui.c │ │ │ └── ui.h │ │ ├── defines.h │ │ ├── ui.c │ │ ├── ui.h │ │ ├── util.c │ │ └── util.h │ ├── bpmtapper │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── bpm.c │ │ ├── bpm_10px.png │ │ ├── icons │ │ │ └── DolphinCommon_56x48.png │ │ └── img │ │ │ └── screenshot.png │ ├── caesarcipher │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── caesar_cipher.c │ │ ├── caesar_cipher_icon.png │ │ └── img │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── calculator │ │ ├── application.fam │ │ ├── calc.png │ │ ├── calcIcon.png │ │ ├── calculator.c │ │ ├── tinyexpr.c │ │ └── tinyexpr.h │ ├── chess │ │ ├── application.fam │ │ ├── chessIcon.png │ │ ├── chess_app.c │ │ ├── fast_chess.c │ │ └── fast_chess.h │ ├── counter │ │ ├── README.md │ │ ├── application.fam │ │ ├── counter.c │ │ ├── icons │ │ │ └── counter_icon.png │ │ └── media │ │ │ └── preview.gif │ ├── dap_link │ │ ├── README.md │ │ ├── application.fam │ │ ├── dap_config.h │ │ ├── dap_link.c │ │ ├── dap_link.h │ │ ├── dap_link.png │ │ ├── gui │ │ │ ├── dap_gui.c │ │ │ ├── dap_gui.h │ │ │ ├── dap_gui_custom_event.h │ │ │ ├── dap_gui_i.h │ │ │ ├── scenes │ │ │ │ ├── config │ │ │ │ │ ├── dap_scene.c │ │ │ │ │ ├── dap_scene.h │ │ │ │ │ └── dap_scene_config.h │ │ │ │ ├── dap_scene_about.c │ │ │ │ ├── dap_scene_config.c │ │ │ │ ├── dap_scene_help.c │ │ │ │ └── dap_scene_main.c │ │ │ └── views │ │ │ │ ├── dap_main_view.c │ │ │ │ └── dap_main_view.h │ │ ├── icons │ │ │ ├── ActiveConnection_50x64.png │ │ │ ├── ArrowDownEmpty_12x18.png │ │ │ ├── ArrowDownFilled_12x18.png │ │ │ ├── ArrowUpEmpty_12x18.png │ │ │ └── ArrowUpFilled_12x18.png │ │ └── usb │ │ │ ├── dap_v2_usb.c │ │ │ ├── dap_v2_usb.h │ │ │ └── usb_winusb.h │ ├── dht_temp_sensor │ │ ├── DHT.c │ │ ├── DHT.h │ │ ├── application.fam │ │ ├── icon.png │ │ ├── quenon_dht_mon.c │ │ ├── quenon_dht_mon.h │ │ └── scenes │ │ │ ├── DHTMon_mainMenu_scene.c │ │ │ ├── DHTMon_main_scene.c │ │ │ ├── DHTMon_sensorActions_scene.c │ │ │ └── DHTMon_sensorEdit_scene.c │ ├── dice │ │ ├── application.fam │ │ ├── dice.c │ │ └── dice.png │ ├── dice2 │ │ ├── README.md │ │ ├── application.fam │ │ ├── assets │ │ │ ├── ButtonBack_35x10.png │ │ │ ├── ButtonDown_7x4.png │ │ │ ├── ButtonExit_35x10.png │ │ │ ├── ButtonLeft_4x7.png │ │ │ ├── ButtonRight_4x7.png │ │ │ ├── ButtonRoll_35x10.png │ │ │ ├── ButtonUp_7x4.png │ │ │ ├── DiceCount_30x13.png │ │ │ ├── DiceCount_30x13_One.png │ │ │ ├── coin_1.png │ │ │ ├── coin_2.png │ │ │ ├── coin_3.png │ │ │ ├── coin_4.png │ │ │ ├── coin_5.png │ │ │ ├── coin_6.png │ │ │ ├── coin_7.png │ │ │ ├── d100_1.png │ │ │ ├── d100_2.png │ │ │ ├── d100_3.png │ │ │ ├── d100_4.png │ │ │ ├── d10_1.png │ │ │ ├── d10_2.png │ │ │ ├── d10_3.png │ │ │ ├── d10_4.png │ │ │ ├── d12_1.png │ │ │ ├── d12_2.png │ │ │ ├── d12_3.png │ │ │ ├── d12_4.png │ │ │ ├── d20_1.png │ │ │ ├── d20_2.png │ │ │ ├── d20_3.png │ │ │ ├── d20_4.png │ │ │ ├── d4_1.png │ │ │ ├── d4_2.png │ │ │ ├── d4_3.png │ │ │ ├── d6_1.png │ │ │ ├── d6_2.png │ │ │ ├── d6_3.png │ │ │ ├── d6_4.png │ │ │ ├── d8_1.png │ │ │ ├── d8_2.png │ │ │ ├── d8_3.png │ │ │ ├── d8_4.png │ │ │ ├── ui_button_back.png │ │ │ ├── ui_button_down.png │ │ │ ├── ui_button_exit.png │ │ │ ├── ui_button_left.png │ │ │ ├── ui_button_right.png │ │ │ ├── ui_button_roll.png │ │ │ ├── ui_button_up.png │ │ │ ├── ui_count.png │ │ │ ├── ui_count_1.png │ │ │ ├── ui_result_1.png │ │ │ ├── ui_result_2.png │ │ │ └── ui_result_3.png │ │ ├── constants.h │ │ ├── dice_app.c │ │ ├── icon.png │ │ ├── images │ │ │ ├── coin.pixil │ │ │ └── d100.pixil │ │ └── sources │ │ │ ├── coin.pixil │ │ │ ├── d10.pixil │ │ │ ├── d100.pixil │ │ │ ├── d12.pixil │ │ │ ├── d20.pixil │ │ │ ├── d6.pixil │ │ │ ├── d8.pixil │ │ │ ├── flipper-screen.png │ │ │ ├── main-screen.png │ │ │ └── roll-screen.png │ ├── dolphinbackup │ │ ├── application.fam │ │ ├── bckupIcon.png │ │ ├── scenes │ │ │ ├── storage_DolphinBackup_scene.c │ │ │ ├── storage_DolphinBackup_scene.h │ │ │ ├── storage_DolphinBackup_scene_config.h │ │ │ ├── storage_DolphinBackup_scene_confirm.c │ │ │ └── storage_DolphinBackup_scene_progress.c │ │ ├── storage_DolphinBackup.c │ │ └── storage_DolphinBackup.h │ ├── dolphinrestorer │ │ ├── application.fam │ │ ├── drestorer.c │ │ ├── drestorer.h │ │ ├── restoreIcon.png │ │ └── scenes │ │ │ ├── drestorer_scene.c │ │ │ ├── drestorer_scene.h │ │ │ ├── drestorer_scene_config.h │ │ │ ├── drestorer_scene_confirm.c │ │ │ └── drestorer_scene_progress.c │ ├── doom │ │ ├── README.md │ │ ├── application.fam │ │ ├── assets │ │ │ ├── door2.png │ │ │ ├── door_inv.png │ │ │ ├── fire_inv.png │ │ │ ├── fireball_inv.png │ │ │ ├── fireball_mask_inv.png │ │ │ ├── gradient_inv.png │ │ │ ├── gun_inv.png │ │ │ ├── gun_mask_inv.png │ │ │ ├── imp_inv.png │ │ │ ├── imp_mask_inv.png │ │ │ ├── item_inv.png │ │ │ ├── item_mask_inv.png │ │ │ ├── logo_inv.png │ │ │ ├── screenshot-imp2.jpg │ │ │ ├── screenshot-intro2.jpg │ │ │ ├── screenshot-medkit2.jpg │ │ │ ├── screenshot-start2.jpg │ │ │ ├── screenshot1.png │ │ │ ├── screenshot2.png │ │ │ └── screenshot3.png │ │ ├── compiled │ │ │ ├── assets_icons.c │ │ │ └── assets_icons.h │ │ ├── constants.h │ │ ├── display.h │ │ ├── doom.c │ │ ├── doom_10px.png │ │ ├── doom_music_player_worker.c │ │ ├── doom_music_player_worker.h │ │ ├── entities.c │ │ ├── entities.h │ │ ├── level.h │ │ ├── sound.h │ │ ├── types.c │ │ └── types.h │ ├── dtmf_dolphin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── assets │ │ │ └── dialer.jpg │ │ ├── dtmf_dolphin.c │ │ ├── dtmf_dolphin_audio.c │ │ ├── dtmf_dolphin_audio.h │ │ ├── dtmf_dolphin_data.c │ │ ├── dtmf_dolphin_data.h │ │ ├── dtmf_dolphin_event.h │ │ ├── dtmf_dolphin_hal.c │ │ ├── dtmf_dolphin_hal.h │ │ ├── dtmf_dolphin_i.h │ │ ├── phone.png │ │ ├── scenes │ │ │ ├── dtmf_dolphin_scene.c │ │ │ ├── dtmf_dolphin_scene.h │ │ │ ├── dtmf_dolphin_scene_config.h │ │ │ ├── dtmf_dolphin_scene_dialer.c │ │ │ └── dtmf_dolphin_scene_start.c │ │ └── views │ │ │ ├── dtmf_dolphin_common.h │ │ │ ├── dtmf_dolphin_dialer.c │ │ │ └── dtmf_dolphin_dialer.h │ ├── flappy_bird │ │ ├── application.fam │ │ ├── assets │ │ │ └── bird │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ └── frame_rate │ │ ├── flappy_10px.png │ │ └── flappy_bird.c │ ├── flashlight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── flash10px.png │ │ └── flashlight.c │ ├── flipfrid │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── application.fam │ │ ├── flipfrid.c │ │ ├── flipfrid.h │ │ ├── images │ │ │ └── 125_10px.png │ │ ├── rfid_10px.png │ │ └── scene │ │ │ ├── flipfrid_scene_entrypoint.c │ │ │ ├── flipfrid_scene_entrypoint.h │ │ │ ├── flipfrid_scene_load_custom_uids.c │ │ │ ├── flipfrid_scene_load_custom_uids.h │ │ │ ├── flipfrid_scene_load_file.c │ │ │ ├── flipfrid_scene_load_file.h │ │ │ ├── flipfrid_scene_run_attack.c │ │ │ ├── flipfrid_scene_run_attack.h │ │ │ ├── flipfrid_scene_select_field.c │ │ │ └── flipfrid_scene_select_field.h │ ├── flipper_i2ctools │ │ ├── .gitignore │ │ ├── README.md │ │ ├── application.fam │ │ ├── i2cscanner.c │ │ ├── i2cscanner.h │ │ ├── i2csender.c │ │ ├── i2csender.h │ │ ├── i2csniffer.c │ │ ├── i2csniffer.h │ │ ├── i2ctools.c │ │ ├── i2ctools.gif │ │ ├── i2ctools.png │ │ ├── i2ctools_i.h │ │ ├── images │ │ │ ├── ButtonDown_7x4.png │ │ │ ├── ButtonLeft_4x7.png │ │ │ ├── ButtonRight_4x7.png │ │ │ ├── ButtonUp_7x4.png │ │ │ ├── Ok_btn_9x9.png │ │ │ └── i2ctools_main_76x59.png │ │ └── views │ │ │ ├── main_view.c │ │ │ ├── main_view.h │ │ │ ├── scanner_view.c │ │ │ ├── scanner_view.h │ │ │ ├── sender_view.c │ │ │ ├── sender_view.h │ │ │ ├── sniffer_view.c │ │ │ └── sniffer_view.h │ ├── game15 │ │ ├── README.md │ │ ├── application.fam │ │ ├── game15.c │ │ ├── game15_10px.png │ │ ├── images │ │ │ ├── Game15.png │ │ │ ├── Game15Popup.png │ │ │ └── Game15Restore.png │ │ ├── sandbox.c │ │ └── sandbox.h │ ├── game2048 │ │ ├── 2048.png │ │ ├── application.fam │ │ ├── font.c │ │ ├── font.h │ │ └── game_2048.c │ ├── game_of_life │ │ ├── application.fam │ │ ├── game_of_life.c │ │ └── golIcon.png │ ├── gps_nmea_uart │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── gps.c │ │ ├── gps_10px.png │ │ ├── gps_uart.c │ │ ├── gps_uart.h │ │ ├── minmea.c │ │ ├── minmea.h │ │ ├── ui.png │ │ └── wiring.png │ ├── hc_sr04 │ │ ├── README.md │ │ ├── application.fam │ │ ├── dist_sensor10px.png │ │ └── hc_sr04.c │ ├── heap_defence_game │ │ ├── application.fam │ │ ├── assets_images │ │ │ ├── Background_128x64.png │ │ │ ├── Box1_10x10.png │ │ │ ├── Box2_10x10.png │ │ │ ├── Box3_10x10.png │ │ │ ├── Box4_10x10.png │ │ │ ├── Box5_10x10.png │ │ │ ├── Box6p_10x10.png │ │ │ ├── Box7p_10x10.png │ │ │ ├── Box8p_10x10.png │ │ │ ├── Game_over_128x64.png │ │ │ ├── HD_game_over_128x64 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ ├── frame_04.png │ │ │ │ ├── frame_05.png │ │ │ │ ├── frame_06.png │ │ │ │ ├── frame_07.png │ │ │ │ └── frame_rate │ │ │ ├── HD_person_block_left_10x20 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ └── frame_rate │ │ │ ├── HD_person_block_right_10x20 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ └── frame_rate │ │ │ ├── HD_person_left_10x20 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ ├── frame_04.png │ │ │ │ └── frame_rate │ │ │ ├── HD_person_right_10x20 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ ├── frame_04.png │ │ │ │ └── frame_rate │ │ │ ├── HD_start_128x64 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ ├── frame_04.png │ │ │ │ └── frame_rate │ │ │ ├── Person4_1_10x20.png │ │ │ ├── Person4_2_10x20.png │ │ │ ├── Person5_1_10x20.png │ │ │ ├── Person5_2_10x20.png │ │ │ └── Start_128x64.png │ │ ├── box.png │ │ ├── heap_defence.c │ │ ├── hede_assets.c │ │ └── hede_assets.h │ ├── hex_viewer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── hex_viewer.c │ │ └── icons │ │ │ └── hex_10px.png │ ├── hid_app │ │ ├── application.fam │ │ ├── assets │ │ │ ├── Arr_dwn_7x9.png │ │ │ ├── Arr_up_7x9.png │ │ │ ├── Ble_connected_15x15.png │ │ │ ├── Ble_disconnected_15x15.png │ │ │ ├── ButtonDown_7x4.png │ │ │ ├── ButtonLeft_4x7.png │ │ │ ├── ButtonRight_4x7.png │ │ │ ├── ButtonUp_7x4.png │ │ │ ├── Button_18x18.png │ │ │ ├── Circles_47x47.png │ │ │ ├── Left_mouse_icon_9x9.png │ │ │ ├── Like_def_11x9.png │ │ │ ├── Like_pressed_17x17.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Ok_btn_pressed_13x13.png │ │ │ ├── Pin_arrow_down_7x9.png │ │ │ ├── Pin_arrow_left_9x7.png │ │ │ ├── Pin_arrow_right_9x7.png │ │ │ ├── Pin_arrow_up_7x9.png │ │ │ ├── Pin_back_arrow_10x8.png │ │ │ ├── Pressed_Button_13x13.png │ │ │ ├── Right_mouse_icon_9x9.png │ │ │ ├── Space_65x18.png │ │ │ ├── Voldwn_6x6.png │ │ │ └── Volup_8x6.png │ │ ├── hid.c │ │ ├── hid.h │ │ ├── hid_ble_10px.png │ │ ├── hid_usb_10px.png │ │ ├── views.h │ │ └── views │ │ │ ├── hid_keyboard.c │ │ │ ├── hid_keyboard.h │ │ │ ├── hid_keynote.c │ │ │ ├── hid_keynote.h │ │ │ ├── hid_media.c │ │ │ ├── hid_media.h │ │ │ ├── hid_mouse.c │ │ │ ├── hid_mouse.h │ │ │ ├── hid_tiktok.c │ │ │ └── hid_tiktok.h │ ├── htu21d_temp_sensor │ │ ├── Readme.md │ │ ├── application.fam │ │ ├── docs │ │ │ ├── App.png │ │ │ ├── Connection.png │ │ │ └── Flipper.png │ │ ├── temperature_sensor.c │ │ └── temperature_sensor.png │ ├── ibtn_fuzzer │ │ ├── LICENSE.md │ │ ├── application.fam │ │ ├── ibtnfuzzer.c │ │ ├── ibtnfuzzer.h │ │ ├── ibutt_10px.png │ │ ├── images │ │ │ └── ibutt_10px.png │ │ └── scene │ │ │ ├── ibtnfuzzer_scene_entrypoint.c │ │ │ ├── ibtnfuzzer_scene_entrypoint.h │ │ │ ├── ibtnfuzzer_scene_load_custom_uids.c │ │ │ ├── ibtnfuzzer_scene_load_custom_uids.h │ │ │ ├── ibtnfuzzer_scene_load_file.c │ │ │ ├── ibtnfuzzer_scene_load_file.h │ │ │ ├── ibtnfuzzer_scene_run_attack.c │ │ │ ├── ibtnfuzzer_scene_run_attack.h │ │ │ ├── ibtnfuzzer_scene_select_field.c │ │ │ └── ibtnfuzzer_scene_select_field.h │ ├── ifttt │ │ ├── application.fam │ │ ├── icon.png │ │ ├── ifttt_virtual_button.c │ │ ├── ifttt_virtual_button.h │ │ ├── scenes │ │ │ ├── virtual_button_scene.c │ │ │ ├── virtual_button_scene.h │ │ │ ├── virtual_button_scene_about.c │ │ │ ├── virtual_button_scene_config.h │ │ │ ├── virtual_button_scene_send.c │ │ │ └── virtual_button_scene_start.c │ │ └── views │ │ │ ├── about_view.c │ │ │ ├── about_view.h │ │ │ ├── send_view.c │ │ │ └── send_view.h │ ├── lightmeter │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── gui │ │ │ ├── scenes │ │ │ │ ├── config │ │ │ │ │ ├── lightmeter_scene.c │ │ │ │ │ ├── lightmeter_scene.h │ │ │ │ │ └── lightmeter_scene_config.h │ │ │ │ ├── lightmeter_scene_about.c │ │ │ │ ├── lightmeter_scene_config.c │ │ │ │ ├── lightmeter_scene_help.c │ │ │ │ └── lightmeter_scene_main.c │ │ │ └── views │ │ │ │ ├── main_view.c │ │ │ │ └── main_view.h │ │ ├── icons │ │ │ ├── T_10x14.png │ │ │ └── f_10x14.png │ │ ├── images │ │ │ ├── framed_gui.gif │ │ │ ├── framed_gui_config.png │ │ │ ├── framed_gui_main.png │ │ │ ├── gui_config.png │ │ │ └── gui_main.png │ │ ├── lib │ │ │ └── BH1750 │ │ │ │ ├── BH1750.c │ │ │ │ ├── BH1750.h │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── docs │ │ │ │ └── BH1750.pdf │ │ ├── lightmeter.c │ │ ├── lightmeter.h │ │ ├── lightmeter.png │ │ ├── lightmeter_config.h │ │ ├── lightmeter_helper.c │ │ └── lightmeter_helper.h │ ├── mandelbrot │ │ ├── Mandelbrot.png │ │ ├── application.fam │ │ └── mandelbrot.c │ ├── metronome │ │ ├── README.md │ │ ├── application.fam │ │ ├── gui_extensions.c │ │ ├── gui_extensions.h │ │ ├── icons │ │ │ └── ButtonUp_7x4.png │ │ ├── images │ │ │ └── ButtonUp_7x4.png │ │ ├── img │ │ │ ├── screenshot.png │ │ │ ├── wave_left_4x14.png │ │ │ └── wave_right_4x14.png │ │ ├── metronome.c │ │ └── metronome_icon.png │ ├── minesweeper │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── assets.h │ │ ├── assets │ │ │ ├── asset │ │ │ ├── mockup.png │ │ │ ├── tile_0.png │ │ │ ├── tile_0.xbm │ │ │ ├── tile_1.png │ │ │ ├── tile_1.xbm │ │ │ ├── tile_2.png │ │ │ ├── tile_2.xbm │ │ │ ├── tile_3.png │ │ │ ├── tile_3.xbm │ │ │ ├── tile_4.png │ │ │ ├── tile_4.xbm │ │ │ ├── tile_5.png │ │ │ ├── tile_5.xbm │ │ │ ├── tile_6.png │ │ │ ├── tile_6.xbm │ │ │ ├── tile_7.png │ │ │ ├── tile_7.xbm │ │ │ ├── tile_8.png │ │ │ ├── tile_8.xbm │ │ │ ├── tile_empty.png │ │ │ ├── tile_flag.png │ │ │ ├── tile_flag.xbm │ │ │ ├── tile_mine.png │ │ │ ├── tile_mine.xbm │ │ │ ├── tile_uncleared.png │ │ │ └── tile_uncleared.xbm │ │ ├── img │ │ │ └── screenshot.png │ │ ├── minesweeper.c │ │ └── minesweeper_icon.png │ ├── montyhall │ │ ├── Monty.png │ │ ├── application.fam │ │ └── monteyhall.c │ ├── morse_code │ │ ├── application.fam │ │ ├── morse_code.c │ │ ├── morse_code_10px.png │ │ ├── morse_code_worker.c │ │ └── morse_code_worker.h │ ├── mouse_jiggler │ │ ├── application.fam │ │ ├── mouse_10px.png │ │ └── mouse_jiggler.c │ ├── mousejacker │ │ ├── README.md │ │ ├── application.fam │ │ ├── icons │ │ │ ├── badusb_10px.png │ │ │ └── sub1_10px.png │ │ ├── images │ │ │ ├── badusb_10px.png │ │ │ └── sub1_10px.png │ │ ├── lib │ │ │ └── nrf24 │ │ │ │ ├── nrf24.c │ │ │ │ └── nrf24.h │ │ ├── mouse_10px.png │ │ ├── mousejacker.c │ │ ├── mousejacker_ducky.c │ │ └── mousejacker_ducky.h │ ├── multi_converter │ │ ├── application.fam │ │ ├── converter_10px.png │ │ ├── multi_converter.c │ │ ├── multi_converter_definitions.h │ │ ├── multi_converter_mode_display.c │ │ ├── multi_converter_mode_display.h │ │ ├── multi_converter_mode_select.c │ │ ├── multi_converter_mode_select.h │ │ ├── multi_converter_units.c │ │ └── multi_converter_units.h │ ├── music_beeper │ │ ├── application.fam │ │ ├── icons │ │ │ └── music_10px.png │ │ ├── music_beeper.c │ │ ├── music_beeper_cli.c │ │ ├── music_beeper_worker.c │ │ └── music_beeper_worker.h │ ├── music_player │ │ ├── application.fam │ │ ├── icons │ │ │ └── music_10px.png │ │ ├── music_player.c │ │ ├── music_player_cli.c │ │ ├── music_player_worker.c │ │ └── music_player_worker.h │ ├── musictracker │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── build_dev.yml │ │ ├── README.md │ │ ├── application.fam │ │ ├── icons │ │ │ └── .gitignore │ │ ├── tracker_engine │ │ │ ├── speaker_hal.c │ │ │ ├── speaker_hal.h │ │ │ ├── tracker.c │ │ │ ├── tracker.h │ │ │ ├── tracker_notes.h │ │ │ └── tracker_song.h │ │ ├── view │ │ │ ├── tracker_view.c │ │ │ └── tracker_view.h │ │ ├── zero_tracker.c │ │ ├── zero_tracker.h │ │ └── zero_tracker.png │ ├── namechanger │ │ ├── application.fam │ │ ├── icons │ │ │ ├── Cry_dolph_55x52.png │ │ │ ├── DolphinMafia_115x62.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── MarioBlock.png │ │ │ └── namechanger_10px.png │ │ ├── namechanger.c │ │ ├── namechanger.h │ │ ├── namechanger_10px.png │ │ ├── namechanger_custom_event.h │ │ └── scenes │ │ │ ├── namechanger_scene.c │ │ │ ├── namechanger_scene.h │ │ │ ├── namechanger_scene_change.c │ │ │ ├── namechanger_scene_change_success.c │ │ │ ├── namechanger_scene_config.h │ │ │ ├── namechanger_scene_error.c │ │ │ ├── namechanger_scene_revert.c │ │ │ ├── namechanger_scene_revert_success.c │ │ │ └── namechanger_scene_start.c │ ├── nfc_magic │ │ ├── application.fam │ │ ├── assets │ │ │ ├── DolphinCommon_56x48.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── Loading_24.png │ │ │ └── NFC_manual_60x50.png │ │ ├── lib │ │ │ └── magic │ │ │ │ ├── magic.c │ │ │ │ └── magic.h │ │ ├── nfc_magic.c │ │ ├── nfc_magic.h │ │ ├── nfc_magic_i.h │ │ ├── nfc_magic_worker.c │ │ ├── nfc_magic_worker.h │ │ ├── nfc_magic_worker_i.h │ │ └── scenes │ │ │ ├── nfc_magic_scene.c │ │ │ ├── nfc_magic_scene.h │ │ │ ├── nfc_magic_scene_check.c │ │ │ ├── nfc_magic_scene_config.h │ │ │ ├── nfc_magic_scene_file_select.c │ │ │ ├── nfc_magic_scene_magic_info.c │ │ │ ├── nfc_magic_scene_not_magic.c │ │ │ ├── nfc_magic_scene_start.c │ │ │ ├── nfc_magic_scene_success.c │ │ │ ├── nfc_magic_scene_wipe.c │ │ │ ├── nfc_magic_scene_wipe_fail.c │ │ │ ├── nfc_magic_scene_write.c │ │ │ ├── nfc_magic_scene_write_confirm.c │ │ │ ├── nfc_magic_scene_write_fail.c │ │ │ └── nfc_magic_scene_wrong_card.c │ ├── nrf24scan │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Screenshot-1.png │ │ ├── Screenshot-2.png │ │ ├── Screenshot-3.png │ │ ├── Screenshot-4.png │ │ ├── Screenshot-5.png │ │ ├── addr-WCO1.txt │ │ ├── addr.txt │ │ ├── addr1.txt │ │ ├── addr_sniff.txt │ │ ├── application.fam │ │ ├── lib │ │ │ └── nrf24 │ │ │ │ ├── nrf24.c │ │ │ │ └── nrf24.h │ │ ├── nrf24scan.c │ │ ├── nrf24scan.h │ │ ├── nrf24scan_10px.png │ │ └── settings.txt │ ├── nrfsniff │ │ ├── README.md │ │ ├── application.fam │ │ ├── lib │ │ │ └── nrf24 │ │ │ │ ├── nrf24.c │ │ │ │ └── nrf24.h │ │ ├── nrfsniff.c │ │ └── nrfsniff_10px.png │ ├── ocarina │ │ ├── README.md │ │ ├── application.fam │ │ ├── icons │ │ │ └── music_10px.png │ │ └── ocarina.c │ ├── paint │ │ ├── application.fam │ │ ├── paint.c │ │ └── paintIcon.png │ ├── passgen │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── icons │ │ │ ├── Horizontal_arrow_9x7.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Pin_back_arrow_10x8.png │ │ │ ├── Vertical_arrow_7x9.png │ │ │ └── passgen_icon.png │ │ ├── images │ │ │ └── preview.png │ │ └── passgen.c │ ├── picopass │ │ ├── 125_10px.png │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── iclass_elite_dict.c │ │ │ └── iclass_elite_dict.h │ │ ├── icons │ │ │ ├── DolphinMafia_115x62.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── Nfc_10px.png │ │ │ ├── RFIDDolphinReceive_97x61.png │ │ │ └── RFIDDolphinSend_97x61.png │ │ ├── lib │ │ │ └── loclass │ │ │ │ ├── optimized_cipher.c │ │ │ │ ├── optimized_cipher.h │ │ │ │ ├── optimized_cipherutils.c │ │ │ │ ├── optimized_cipherutils.h │ │ │ │ ├── optimized_elite.c │ │ │ │ ├── optimized_elite.h │ │ │ │ ├── optimized_ikeys.c │ │ │ │ └── optimized_ikeys.h │ │ ├── picopass.c │ │ ├── picopass.h │ │ ├── picopass_device.c │ │ ├── picopass_device.h │ │ ├── picopass_i.h │ │ ├── picopass_worker.c │ │ ├── picopass_worker.h │ │ ├── picopass_worker_i.h │ │ ├── rfal_picopass.c │ │ ├── rfal_picopass.h │ │ └── scenes │ │ │ ├── picopass_scene.c │ │ │ ├── picopass_scene.h │ │ │ ├── picopass_scene_card_menu.c │ │ │ ├── picopass_scene_config.h │ │ │ ├── picopass_scene_delete.c │ │ │ ├── picopass_scene_delete_success.c │ │ │ ├── picopass_scene_device_info.c │ │ │ ├── picopass_scene_file_select.c │ │ │ ├── picopass_scene_read_card.c │ │ │ ├── picopass_scene_read_card_success.c │ │ │ ├── picopass_scene_save_name.c │ │ │ ├── picopass_scene_save_success.c │ │ │ ├── picopass_scene_saved_menu.c │ │ │ ├── picopass_scene_start.c │ │ │ ├── picopass_scene_write_card.c │ │ │ └── picopass_scene_write_card_success.c │ ├── playlist │ │ ├── application.fam │ │ ├── canvas_helper.c │ │ ├── canvas_helper.h │ │ ├── images │ │ │ ├── ButtonRight_4x7.png │ │ │ └── sub1_10px.png │ │ ├── playlist.c │ │ ├── playlist_10px.png │ │ ├── playlist_file.c │ │ └── playlist_file.h │ ├── pomodoro │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── icons │ │ │ ├── ButtonLeft_4x7.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Pin_back_arrow_10x8.png │ │ │ └── Space_65x18.png │ │ ├── misc │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── pomodoro.c │ │ ├── pomodoro.h │ │ ├── pomodoro_timer.c │ │ ├── pomodoro_timer.h │ │ ├── pomodoro_timer.png │ │ └── views │ │ │ ├── pomodoro_10.c │ │ │ ├── pomodoro_10.h │ │ │ ├── pomodoro_25.c │ │ │ ├── pomodoro_25.h │ │ │ ├── pomodoro_50.c │ │ │ └── pomodoro_50.h │ ├── rc2014_coleco │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── coleco.c │ │ ├── coleco_10px.png │ │ ├── icons │ │ │ ├── Coleco0_17x17.png │ │ │ ├── Coleco0_hvr_17x17.png │ │ │ ├── Coleco1_17x17.png │ │ │ ├── Coleco1_hvr_17x17.png │ │ │ ├── Coleco2_17x17.png │ │ │ ├── Coleco2_hvr_17x17.png │ │ │ ├── Coleco3_17x17.png │ │ │ ├── Coleco3_hvr_17x17.png │ │ │ ├── Coleco4_17x17.png │ │ │ ├── Coleco4_hvr_17x17.png │ │ │ ├── Coleco5_17x17.png │ │ │ ├── Coleco5_hvr_17x17.png │ │ │ ├── Coleco6_17x17.png │ │ │ ├── Coleco6_hvr_17x17.png │ │ │ ├── Coleco7_17x17.png │ │ │ ├── Coleco7_hvr_17x17.png │ │ │ ├── Coleco8_17x17.png │ │ │ ├── Coleco8_hvr_17x17.png │ │ │ ├── Coleco9_17x17.png │ │ │ ├── Coleco9_hvr_17x17.png │ │ │ ├── ColecoAlt_18x9.png │ │ │ ├── ColecoAlt_hvr_18x9.png │ │ │ ├── ColecoFire_18x9.png │ │ │ ├── ColecoFire_hvr_18x9.png │ │ │ ├── ColecoFire_sel_18x9.png │ │ │ ├── ColecoJoystick_33x33.png │ │ │ ├── ColecoJoystick_hvr_33x33.png │ │ │ ├── ColecoJoystick_sel_33x33.png │ │ │ ├── ColecoPound_17x17.png │ │ │ ├── ColecoPound_hvr_17x17.png │ │ │ ├── ColecoStar_17x17.png │ │ │ └── ColecoStar_hvr_17x17.png │ │ ├── interface │ │ │ ├── flipper-coleco.brd │ │ │ └── flipper-coleco.sch │ │ └── ui.png │ ├── sam │ │ ├── application.fam │ │ ├── icons │ │ │ └── music_10px.png │ │ ├── sam_app.cpp │ │ ├── stm32_sam.cpp │ │ └── stm32_sam.h │ ├── scorched_tanks │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── scorchedTanks_10px.png │ │ ├── scorched_tanks_game_app.c │ │ └── scorched_tanks_v1.gif │ ├── sentry_safe │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── safe_10px.png │ │ └── sentry_safe.c │ ├── signal_generator │ │ ├── application.fam │ │ ├── icons │ │ │ ├── SmallArrowDown_3x5.png │ │ │ └── SmallArrowUp_3x5.png │ │ ├── scenes │ │ │ ├── signal_gen_scene.c │ │ │ ├── signal_gen_scene.h │ │ │ ├── signal_gen_scene_config.h │ │ │ ├── signal_gen_scene_mco.c │ │ │ ├── signal_gen_scene_pwm.c │ │ │ └── signal_gen_scene_start.c │ │ ├── signal_gen_10px.png │ │ ├── signal_gen_app.c │ │ ├── signal_gen_app_i.h │ │ └── views │ │ │ ├── signal_gen_pwm.c │ │ │ └── signal_gen_pwm.h │ ├── snake_game │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── snake_file_handler.c │ │ │ ├── snake_file_handler.h │ │ │ └── snake_types.h │ │ ├── snake_10px.png │ │ └── snake_game.c │ ├── solitaire │ │ ├── application.fam │ │ ├── assets │ │ │ ├── card_graphics.png │ │ │ └── solitaire_main.png │ │ ├── common │ │ │ ├── card.c │ │ │ ├── card.h │ │ │ ├── dml.c │ │ │ ├── dml.h │ │ │ ├── menu.c │ │ │ ├── menu.h │ │ │ ├── queue.c │ │ │ ├── queue.h │ │ │ ├── ui.c │ │ │ └── ui.h │ │ ├── defines.h │ │ ├── solitaire.c │ │ └── solitaire_10px.png │ ├── spectrum_analyzer │ │ ├── application.fam │ │ ├── spectrum_10px.png │ │ ├── spectrum_analyzer.c │ │ ├── spectrum_analyzer.h │ │ ├── spectrum_analyzer_worker.c │ │ └── spectrum_analyzer_worker.h │ ├── subbrute │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── subbrute_worker.c │ │ │ ├── subbrute_worker.h │ │ │ └── subbrute_worker_private.h │ │ ├── images │ │ │ ├── ButtonDown_7x4.png │ │ │ ├── ButtonUp_7x4.png │ │ │ ├── DolphinNice_96x59.png │ │ │ ├── Sub1ghz_14 │ │ │ │ ├── frame_01.png │ │ │ │ ├── frame_02.png │ │ │ │ ├── frame_03.png │ │ │ │ ├── frame_04.png │ │ │ │ ├── frame_05.png │ │ │ │ ├── frame_06.png │ │ │ │ └── frame_rate │ │ │ └── sub1_10px.png │ │ ├── scenes │ │ │ ├── subbrute_scene.h │ │ │ ├── subbrute_scene_config.h │ │ │ ├── subbrute_scene_load_file.c │ │ │ ├── subbrute_scene_load_select.c │ │ │ ├── subbrute_scene_run_attack.c │ │ │ ├── subbrute_scene_save_name.c │ │ │ ├── subbrute_scene_save_success.c │ │ │ ├── subbrute_scene_setup_attack.c │ │ │ ├── subbrute_scene_start.c │ │ │ └── subbute_scene.c │ │ ├── subbrute.c │ │ ├── subbrute.h │ │ ├── subbrute_10px.png │ │ ├── subbrute_custom_event.h │ │ ├── subbrute_device.c │ │ ├── subbrute_device.h │ │ ├── subbrute_i.h │ │ ├── subbrute_protocols.c │ │ ├── subbrute_protocols.h │ │ └── views │ │ │ ├── subbrute_attack_view.c │ │ │ ├── subbrute_attack_view.h │ │ │ ├── subbrute_main_view.c │ │ │ └── subbrute_main_view.h │ ├── tama_p1 │ │ ├── README.md │ │ ├── application.fam │ │ ├── compiled │ │ │ └── assets_icons.h │ │ ├── hal.c │ │ ├── hal_types.h │ │ ├── icons │ │ │ ├── icon_0.png │ │ │ ├── icon_1.png │ │ │ ├── icon_2.png │ │ │ ├── icon_3.png │ │ │ ├── icon_4.png │ │ │ ├── icon_5.png │ │ │ ├── icon_6.png │ │ │ └── icon_7.png │ │ ├── tama.h │ │ ├── tamaIcon.png │ │ ├── tama_p1.c │ │ └── tamalib │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── hal.h │ │ │ ├── hal_types.h.template │ │ │ ├── hw.c │ │ │ ├── hw.h │ │ │ ├── tamalib.c │ │ │ └── tamalib.h │ ├── tanksgame │ │ ├── application.fam │ │ ├── constants.h │ │ ├── images │ │ │ ├── HappyFlipper_128x64.png │ │ │ ├── TanksSplashScreen_128x64.png │ │ │ ├── enemy_down.png │ │ │ ├── enemy_left.png │ │ │ ├── enemy_right.png │ │ │ ├── enemy_up.png │ │ │ ├── projectile_down.png │ │ │ ├── projectile_left.png │ │ │ ├── projectile_right.png │ │ │ ├── projectile_up.png │ │ │ ├── tank_base.png │ │ │ ├── tank_down.png │ │ │ ├── tank_explosion.png │ │ │ ├── tank_hedgehog.png │ │ │ ├── tank_left.png │ │ │ ├── tank_right.png │ │ │ ├── tank_stone.png │ │ │ ├── tank_up.png │ │ │ └── tank_wall.png │ │ ├── tanksIcon.png │ │ └── tanks_game.c │ ├── tetris_game │ │ ├── application.fam │ │ ├── tetris_10px.png │ │ └── tetris_game.c │ ├── tictactoe_game │ │ ├── application.fam │ │ ├── tictactoe_10px.png │ │ └── tictactoe_game.c │ ├── timelapse │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── application.fam │ │ ├── gpio_item.c │ │ ├── gpio_item.h │ │ ├── zeitraffer.c │ │ └── zeitraffer.png │ ├── totp │ │ ├── .clang-format │ │ ├── LICENSE │ │ ├── application.fam │ │ ├── cli │ │ │ ├── cli.c │ │ │ ├── cli.h │ │ │ ├── cli_helpers.c │ │ │ ├── cli_helpers.h │ │ │ └── commands │ │ │ │ ├── add │ │ │ │ ├── add.c │ │ │ │ └── add.h │ │ │ │ ├── delete │ │ │ │ ├── delete.c │ │ │ │ └── delete.h │ │ │ │ ├── help │ │ │ │ ├── help.c │ │ │ │ └── help.h │ │ │ │ ├── list │ │ │ │ ├── list.c │ │ │ │ └── list.h │ │ │ │ ├── move │ │ │ │ ├── move.c │ │ │ │ └── move.h │ │ │ │ ├── notification │ │ │ │ ├── notification.c │ │ │ │ └── notification.h │ │ │ │ ├── pin │ │ │ │ ├── pin.c │ │ │ │ └── pin.h │ │ │ │ └── timezone │ │ │ │ ├── timezone.c │ │ │ │ └── timezone.h │ │ ├── images │ │ │ ├── DolphinCommon_56x48.png │ │ │ ├── totp_arrow_bottom_10x5.png │ │ │ ├── totp_arrow_left_8x9.png │ │ │ └── totp_arrow_right_8x9.png │ │ ├── lib │ │ │ ├── base32 │ │ │ │ ├── base32.c │ │ │ │ └── base32.h │ │ │ ├── list │ │ │ │ ├── list.c │ │ │ │ └── list.h │ │ │ ├── polyfills │ │ │ │ ├── memset_s.c │ │ │ │ ├── memset_s.h │ │ │ │ ├── strnlen.c │ │ │ │ └── strnlen.h │ │ │ ├── roll_value │ │ │ │ ├── roll_value.c │ │ │ │ └── roll_value.h │ │ │ └── timezone_utils │ │ │ │ ├── timezone_utils.c │ │ │ │ └── timezone_utils.h │ │ ├── services │ │ │ ├── config │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── constants.h │ │ │ │ └── migrations │ │ │ │ │ ├── config_migration_v1_to_v2.c │ │ │ │ │ └── config_migration_v1_to_v2.h │ │ │ ├── convert │ │ │ │ └── convert.h │ │ │ ├── crypto │ │ │ │ ├── crypto.c │ │ │ │ └── crypto.h │ │ │ ├── hmac │ │ │ │ ├── byteswap.c │ │ │ │ ├── byteswap.h │ │ │ │ ├── hmac_common.h │ │ │ │ ├── hmac_sha1.c │ │ │ │ ├── hmac_sha1.h │ │ │ │ ├── hmac_sha256.c │ │ │ │ ├── hmac_sha256.h │ │ │ │ ├── hmac_sha512.c │ │ │ │ ├── hmac_sha512.h │ │ │ │ ├── memxor.c │ │ │ │ ├── memxor.h │ │ │ │ ├── sha1.c │ │ │ │ ├── sha1.h │ │ │ │ ├── sha256.c │ │ │ │ ├── sha256.h │ │ │ │ ├── sha512.c │ │ │ │ ├── sha512.h │ │ │ │ └── u64.h │ │ │ └── totp │ │ │ │ ├── totp.c │ │ │ │ └── totp.h │ │ ├── totp_10px.png │ │ ├── totp_app.c │ │ ├── types │ │ │ ├── common.h │ │ │ ├── event_type.h │ │ │ ├── notification_method.h │ │ │ ├── nullable.h │ │ │ ├── plugin_event.h │ │ │ ├── plugin_state.h │ │ │ ├── token_info.c │ │ │ ├── token_info.h │ │ │ └── user_pin_codes.h │ │ ├── ui │ │ │ ├── constants.h │ │ │ ├── scene_director.c │ │ │ ├── scene_director.h │ │ │ ├── scenes │ │ │ │ ├── add_new_token │ │ │ │ │ ├── totp_input_text.c │ │ │ │ │ ├── totp_input_text.h │ │ │ │ │ ├── totp_scene_add_new_token.c │ │ │ │ │ └── totp_scene_add_new_token.h │ │ │ │ ├── app_settings │ │ │ │ │ ├── totp_app_settings.c │ │ │ │ │ └── totp_app_settings.h │ │ │ │ ├── authenticate │ │ │ │ │ ├── totp_scene_authenticate.c │ │ │ │ │ └── totp_scene_authenticate.h │ │ │ │ ├── generate_token │ │ │ │ │ ├── totp_scene_generate_token.c │ │ │ │ │ └── totp_scene_generate_token.h │ │ │ │ └── token_menu │ │ │ │ │ ├── totp_scene_token_menu.c │ │ │ │ │ └── totp_scene_token_menu.h │ │ │ ├── totp_scenes_enum.h │ │ │ ├── ui_controls.c │ │ │ └── ui_controls.h │ │ └── workers │ │ │ └── type_code │ │ │ ├── type_code.c │ │ │ └── type_code.h │ ├── trex_runner │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── application.fam │ │ ├── assets │ │ │ ├── Dino.png │ │ │ ├── DinoRun0.png │ │ │ ├── DinoRun1.png │ │ │ ├── HorizonLine0.png │ │ │ └── HorizonLine1.png │ │ ├── assets_icons.c │ │ ├── assets_icons.h │ │ ├── trexrunner.c │ │ └── trexrunner_icon.png │ ├── tuning_fork │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── img │ │ │ ├── screenshot_1.png │ │ │ ├── screenshot_2.png │ │ │ └── tuning_fork.gif │ │ ├── notes.h │ │ ├── tuning_fork.c │ │ ├── tuning_fork_icon.png │ │ └── tunings.h │ ├── usb_hid_autofire │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── build-test.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── screenshot.png │ │ ├── usb_hid_autofire.c │ │ ├── usb_hid_autofire.kra │ │ ├── usb_hid_autofire.png │ │ ├── usb_hid_autofire.svg │ │ └── version.h │ ├── usb_midi │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── application.fam │ │ ├── midi │ │ │ ├── config.h │ │ │ ├── message.c │ │ │ ├── message.h │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── usb_message.c │ │ │ └── usb_message.h │ │ ├── usb │ │ │ ├── cm3_usb_audio.h │ │ │ ├── cm3_usb_midi.h │ │ │ ├── usb_midi_driver.c │ │ │ └── usb_midi_driver.h │ │ ├── usb_midi.c │ │ └── usb_midi.png │ ├── usbkeyboard │ │ ├── README.md │ │ ├── application.fam │ │ ├── assets │ │ │ ├── Arr_dwn_7x9.png │ │ │ ├── Arr_up_7x9.png │ │ │ ├── ButtonDown_7x4.png │ │ │ ├── ButtonLeft_4x7.png │ │ │ ├── ButtonRight_4x7.png │ │ │ ├── ButtonUp_7x4.png │ │ │ ├── Button_18x18.png │ │ │ ├── Circles_47x47.png │ │ │ ├── Left_mouse_icon_9x9.png │ │ │ ├── Like_def_11x9.png │ │ │ ├── Like_pressed_17x17.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Ok_btn_pressed_13x13.png │ │ │ ├── Pin_arrow_down_7x9.png │ │ │ ├── Pin_arrow_left_9x7.png │ │ │ ├── Pin_arrow_right_9x7.png │ │ │ ├── Pin_arrow_up_7x9.png │ │ │ ├── Pin_back_arrow_10x8.png │ │ │ ├── Pressed_Button_13x13.png │ │ │ ├── Right_mouse_icon_9x9.png │ │ │ ├── Space_65x18.png │ │ │ ├── Voldwn_6x6.png │ │ │ └── Volup_8x6.png │ │ ├── usb_hid.c │ │ ├── usb_hid.h │ │ ├── usb_keyboard_10px.png │ │ └── views │ │ │ ├── usb_hid_dirpad.c │ │ │ ├── usb_hid_dirpad.h │ │ │ ├── usb_hid_keyboard.c │ │ │ ├── usb_hid_keyboard.h │ │ │ ├── usb_hid_media.c │ │ │ ├── usb_hid_media.h │ │ │ ├── usb_hid_mouse.c │ │ │ └── usb_hid_mouse.h │ ├── videopoker │ │ ├── application.fam │ │ ├── poker.c │ │ └── pokerIcon.png │ ├── wav_player │ │ ├── application.fam │ │ ├── images │ │ │ └── music_10px.png │ │ ├── wav_10px.png │ │ ├── wav_parser.c │ │ ├── wav_parser.h │ │ ├── wav_player.c │ │ ├── wav_player_hal.c │ │ ├── wav_player_hal.h │ │ ├── wav_player_view.c │ │ └── wav_player_view.h │ ├── weather_station │ │ ├── application.fam │ │ ├── helpers │ │ │ ├── weather_station_event.h │ │ │ └── weather_station_types.h │ │ ├── images │ │ │ ├── Humid_10x15.png │ │ │ ├── Lock_7x8.png │ │ │ ├── Pin_back_arrow_10x8.png │ │ │ ├── Quest_7x8.png │ │ │ ├── Scanning_123x52.png │ │ │ ├── Therm_7x16.png │ │ │ ├── Unlock_7x8.png │ │ │ ├── WarningDolphin_45x42.png │ │ │ └── station_icon.png │ │ ├── protocols │ │ │ ├── acurite_592txr.c │ │ │ ├── acurite_592txr.h │ │ │ ├── acurite_606tx.c │ │ │ ├── acurite_606tx.h │ │ │ ├── acurite_609txc.c │ │ │ ├── acurite_609txc.h │ │ │ ├── ambient_weather.c │ │ │ ├── ambient_weather.h │ │ │ ├── auriol_hg0601a.c │ │ │ ├── auriol_hg0601a.h │ │ │ ├── gt_wt_02.c │ │ │ ├── gt_wt_02.h │ │ │ ├── gt_wt_03.c │ │ │ ├── gt_wt_03.h │ │ │ ├── infactory.c │ │ │ ├── infactory.h │ │ │ ├── lacrosse_tx141thbv2.c │ │ │ ├── lacrosse_tx141thbv2.h │ │ │ ├── nexus_th.c │ │ │ ├── nexus_th.h │ │ │ ├── oregon2.c │ │ │ ├── oregon2.h │ │ │ ├── protocol_items.c │ │ │ ├── protocol_items.h │ │ │ ├── thermopro_tx4.c │ │ │ ├── thermopro_tx4.h │ │ │ ├── ws_generic.c │ │ │ └── ws_generic.h │ │ ├── scenes │ │ │ ├── weather_station_receiver.c │ │ │ ├── weather_station_scene.c │ │ │ ├── weather_station_scene.h │ │ │ ├── weather_station_scene_about.c │ │ │ ├── weather_station_scene_config.h │ │ │ ├── weather_station_scene_receiver_config.c │ │ │ ├── weather_station_scene_receiver_info.c │ │ │ └── weather_station_scene_start.c │ │ ├── views │ │ │ ├── weather_station_receiver.c │ │ │ ├── weather_station_receiver.h │ │ │ ├── weather_station_receiver_info.c │ │ │ └── weather_station_receiver_info.h │ │ ├── weather_station_10px.png │ │ ├── weather_station_app.c │ │ ├── weather_station_app_i.c │ │ ├── weather_station_app_i.h │ │ ├── weather_station_history.c │ │ └── weather_station_history.h │ ├── wifi_deauther_v1 │ │ ├── FlipperZeroWiFiDeauthModuleDefines.h │ │ ├── application.fam │ │ ├── esp8266_deauth.c │ │ └── wifi_10px.png │ ├── wifi_deauther_v2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── application.fam │ │ ├── scenes │ │ │ ├── wifi_deauther_scene.c │ │ │ ├── wifi_deauther_scene.h │ │ │ ├── wifi_deauther_scene_config.h │ │ │ ├── wifi_deauther_scene_console_output.c │ │ │ ├── wifi_deauther_scene_start.c │ │ │ └── wifi_deauther_scene_text_input.c │ │ ├── wifi_10px.png │ │ ├── wifi_deauther_app.c │ │ ├── wifi_deauther_app.h │ │ ├── wifi_deauther_app_i.h │ │ ├── wifi_deauther_custom_event.h │ │ ├── wifi_deauther_uart.c │ │ └── wifi_deauther_uart.h │ ├── wifi_marauder_companion │ │ ├── application.fam │ │ ├── scenes │ │ │ ├── wifi_marauder_scene.c │ │ │ ├── wifi_marauder_scene.h │ │ │ ├── wifi_marauder_scene_config.h │ │ │ ├── wifi_marauder_scene_console_output.c │ │ │ ├── wifi_marauder_scene_start.c │ │ │ └── wifi_marauder_scene_text_input.c │ │ ├── wifi_10px.png │ │ ├── wifi_marauder_app.c │ │ ├── wifi_marauder_app.h │ │ ├── wifi_marauder_app_i.h │ │ ├── wifi_marauder_custom_event.h │ │ ├── wifi_marauder_uart.c │ │ └── wifi_marauder_uart.h │ ├── wifi_scanner │ │ ├── FlipperZeroWiFiModuleDefines.h │ │ ├── application.fam │ │ ├── wifi_10px.png │ │ └── wifi_scanner.c │ ├── wii_ec_anal │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.txt │ │ ├── WiiEC.png │ │ ├── _image_tool │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── _convert.c │ │ │ ├── _convert.sh │ │ │ ├── _convert_images.c │ │ │ ├── _convert_images.h │ │ │ └── _convert_test.c │ │ ├── _images │ │ │ ├── CLASSIC.png │ │ │ ├── CLASSIC_N.png │ │ │ ├── DEBUG.png │ │ │ ├── DUMP.png │ │ │ ├── GIMP │ │ │ │ ├── Nunchuck_acc.xcf │ │ │ │ ├── RIP.xcf │ │ │ │ ├── Wiring.xcf │ │ │ │ ├── classic.xcf │ │ │ │ ├── csLogo.xcf │ │ │ │ ├── fonts.xcf │ │ │ │ ├── frame.xcf │ │ │ │ ├── port.xcf │ │ │ │ └── social.xcf │ │ │ ├── NUNCHUCK.png │ │ │ ├── NUNCHUCK_acc.png │ │ │ ├── NUNCHUCK_anal.png │ │ │ ├── NUNCHUCK_cal.gif │ │ │ ├── NUNCHUCK_cal.png │ │ │ ├── Nunchucky.png │ │ │ ├── RIP.png │ │ │ ├── SPLASH.png │ │ │ ├── WAIT.png │ │ │ ├── WiiChuck.png │ │ │ ├── Wiring.png │ │ │ ├── plug.png │ │ │ └── social.png │ │ ├── application.fam │ │ ├── bc_logging.h │ │ ├── err.h │ │ ├── gfx │ │ │ ├── images.c │ │ │ ├── images.h │ │ │ ├── img_3x5_0.c │ │ │ ├── img_3x5_1.c │ │ │ ├── img_3x5_2.c │ │ │ ├── img_3x5_3.c │ │ │ ├── img_3x5_4.c │ │ │ ├── img_3x5_5.c │ │ │ ├── img_3x5_6.c │ │ │ ├── img_3x5_7.c │ │ │ ├── img_3x5_8.c │ │ │ ├── img_3x5_9.c │ │ │ ├── img_3x5_v.c │ │ │ ├── img_5x7_0.c │ │ │ ├── img_5x7_1.c │ │ │ ├── img_5x7_2.c │ │ │ ├── img_5x7_3.c │ │ │ ├── img_5x7_4.c │ │ │ ├── img_5x7_5.c │ │ │ ├── img_5x7_6.c │ │ │ ├── img_5x7_7.c │ │ │ ├── img_5x7_8.c │ │ │ ├── img_5x7_9.c │ │ │ ├── img_5x7_A.c │ │ │ ├── img_5x7_B.c │ │ │ ├── img_5x7_C.c │ │ │ ├── img_5x7_D.c │ │ │ ├── img_5x7_E.c │ │ │ ├── img_5x7_F.c │ │ │ ├── img_6x8_0.c │ │ │ ├── img_6x8_1.c │ │ │ ├── img_6x8_2.c │ │ │ ├── img_6x8_3.c │ │ │ ├── img_6x8_4.c │ │ │ ├── img_6x8_5.c │ │ │ ├── img_6x8_6.c │ │ │ ├── img_6x8_7.c │ │ │ ├── img_6x8_8.c │ │ │ ├── img_6x8_9.c │ │ │ ├── img_6x8_A.c │ │ │ ├── img_6x8_B.c │ │ │ ├── img_6x8_C.c │ │ │ ├── img_6x8_D.c │ │ │ ├── img_6x8_E.c │ │ │ ├── img_6x8_F.c │ │ │ ├── img_6x8_G.c │ │ │ ├── img_6x8_X.c │ │ │ ├── img_6x8_Y.c │ │ │ ├── img_6x8_Z.c │ │ │ ├── img_6x8_d_.c │ │ │ ├── img_6x8_n_.c │ │ │ ├── img_6x8_v_.c │ │ │ ├── img_RIP.c │ │ │ ├── img_cc_Cable.c │ │ │ ├── img_cc_Joy.c │ │ │ ├── img_cc_Main.c │ │ │ ├── img_cc_btn_A1.c │ │ │ ├── img_cc_btn_B1.c │ │ │ ├── img_cc_btn_X1.c │ │ │ ├── img_cc_btn_Y1.c │ │ │ ├── img_cc_pad_LR1.c │ │ │ ├── img_cc_pad_UD1.c │ │ │ ├── img_cc_trg_L1.c │ │ │ ├── img_cc_trg_L2.c │ │ │ ├── img_cc_trg_L3.c │ │ │ ├── img_cc_trg_L4.c │ │ │ ├── img_cc_trg_R1.c │ │ │ ├── img_cc_trg_R2.c │ │ │ ├── img_cc_trg_R3.c │ │ │ ├── img_cc_trg_R4.c │ │ │ ├── img_csLogo_FULL.c │ │ │ ├── img_csLogo_Small.c │ │ │ ├── img_ecp_SCL.c │ │ │ ├── img_ecp_SDA.c │ │ │ ├── img_ecp_port.c │ │ │ ├── img_key_Back.c │ │ │ ├── img_key_D.c │ │ │ ├── img_key_L.c │ │ │ ├── img_key_OK.c │ │ │ ├── img_key_OKi.c │ │ │ ├── img_key_R.c │ │ │ ├── img_key_U.c │ │ │ └── img_key_Ui.c │ │ ├── i2c_workaround.h │ │ ├── info.sh │ │ ├── notes.txt │ │ ├── wii_anal.c │ │ ├── wii_anal.h │ │ ├── wii_anal_ec.c │ │ ├── wii_anal_ec.h │ │ ├── wii_anal_keys.c │ │ ├── wii_anal_keys.h │ │ ├── wii_anal_lcd.c │ │ ├── wii_anal_lcd.h │ │ ├── wii_anal_ver.h │ │ ├── wii_ec.c │ │ ├── wii_ec.h │ │ ├── wii_ec_classic.c │ │ ├── wii_ec_classic.h │ │ ├── wii_ec_macros.h │ │ ├── wii_ec_nunchuck.c │ │ ├── wii_ec_nunchuck.h │ │ ├── wii_ec_udraw.c │ │ ├── wii_ec_udraw.h │ │ ├── wii_i2c.c │ │ └── wii_i2c.h │ └── zombiez │ │ ├── application.fam │ │ ├── zombie_10px.png │ │ ├── zombiez.c │ │ └── zombiez.h ├── services │ ├── application.fam │ ├── applications.h │ ├── bt │ │ ├── application.fam │ │ ├── bt_cli.c │ │ ├── bt_service │ │ │ ├── bt.c │ │ │ ├── bt.h │ │ │ ├── bt_api.c │ │ │ ├── bt_i.h │ │ │ ├── bt_keys_filename.h │ │ │ ├── bt_keys_storage.c │ │ │ └── bt_keys_storage.h │ │ ├── bt_settings.c │ │ ├── bt_settings.h │ │ └── bt_settings_filename.h │ ├── cli │ │ ├── application.fam │ │ ├── cli.c │ │ ├── cli.h │ │ ├── cli_command_gpio.c │ │ ├── cli_command_gpio.h │ │ ├── cli_commands.c │ │ ├── cli_commands.h │ │ ├── cli_i.h │ │ ├── cli_vcp.c │ │ └── cli_vcp.h │ ├── crypto │ │ ├── application.fam │ │ └── crypto_cli.c │ ├── desktop │ │ ├── animations │ │ │ ├── animation_manager.c │ │ │ ├── animation_manager.h │ │ │ ├── animation_storage.c │ │ │ ├── animation_storage.h │ │ │ ├── animation_storage_i.h │ │ │ └── views │ │ │ │ ├── bubble_animation_view.c │ │ │ │ ├── bubble_animation_view.h │ │ │ │ ├── one_shot_animation_view.c │ │ │ │ └── one_shot_animation_view.h │ │ ├── application.fam │ │ ├── desktop.c │ │ ├── desktop.h │ │ ├── desktop_i.h │ │ ├── desktop_settings.h │ │ ├── desktop_settings_filename.h │ │ ├── helpers │ │ │ ├── pin_lock.c │ │ │ ├── pin_lock.h │ │ │ ├── slideshow.c │ │ │ ├── slideshow.h │ │ │ └── slideshow_filename.h │ │ ├── scenes │ │ │ ├── desktop_scene.c │ │ │ ├── desktop_scene.h │ │ │ ├── desktop_scene_config.h │ │ │ ├── desktop_scene_debug.c │ │ │ ├── desktop_scene_fault.c │ │ │ ├── desktop_scene_hw_mismatch.c │ │ │ ├── desktop_scene_i.h │ │ │ ├── desktop_scene_lock_menu.c │ │ │ ├── desktop_scene_locked.c │ │ │ ├── desktop_scene_main.c │ │ │ ├── desktop_scene_pin_input.c │ │ │ ├── desktop_scene_pin_timeout.c │ │ │ └── desktop_scene_slideshow.c │ │ └── views │ │ │ ├── desktop_events.h │ │ │ ├── desktop_view_debug.c │ │ │ ├── desktop_view_debug.h │ │ │ ├── desktop_view_lock_menu.c │ │ │ ├── desktop_view_lock_menu.h │ │ │ ├── desktop_view_locked.c │ │ │ ├── desktop_view_locked.h │ │ │ ├── desktop_view_main.c │ │ │ ├── desktop_view_main.h │ │ │ ├── desktop_view_pin_input.c │ │ │ ├── desktop_view_pin_input.h │ │ │ ├── desktop_view_pin_setup_done.c │ │ │ ├── desktop_view_pin_setup_done.h │ │ │ ├── desktop_view_pin_timeout.c │ │ │ ├── desktop_view_pin_timeout.h │ │ │ ├── desktop_view_slideshow.c │ │ │ └── desktop_view_slideshow.h │ ├── dialogs │ │ ├── application.fam │ │ ├── dialogs.c │ │ ├── dialogs.h │ │ ├── dialogs_api.c │ │ ├── dialogs_i.h │ │ ├── dialogs_message.h │ │ ├── dialogs_module_file_browser.c │ │ ├── dialogs_module_file_browser.h │ │ ├── dialogs_module_message.c │ │ ├── dialogs_module_message.h │ │ ├── view_holder.c │ │ └── view_holder.h │ ├── dolphin │ │ ├── application.fam │ │ ├── dolphin.c │ │ ├── dolphin.h │ │ ├── dolphin_i.h │ │ └── helpers │ │ │ ├── dolphin_deed.c │ │ │ ├── dolphin_deed.h │ │ │ ├── dolphin_state.c │ │ │ ├── dolphin_state.h │ │ │ └── dolphin_state_filename.h │ ├── gui │ │ ├── application.fam │ │ ├── canvas.c │ │ ├── canvas.h │ │ ├── canvas_i.h │ │ ├── elements.c │ │ ├── elements.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── gui_i.h │ │ ├── icon.c │ │ ├── icon.h │ │ ├── icon_animation.c │ │ ├── icon_animation.h │ │ ├── icon_animation_i.h │ │ ├── icon_i.h │ │ ├── modules │ │ │ ├── button_menu.c │ │ │ ├── button_menu.h │ │ │ ├── button_panel.c │ │ │ ├── button_panel.h │ │ │ ├── byte_input.c │ │ │ ├── byte_input.h │ │ │ ├── dialog_ex.c │ │ │ ├── dialog_ex.h │ │ │ ├── empty_screen.c │ │ │ ├── empty_screen.h │ │ │ ├── file_browser.c │ │ │ ├── file_browser.h │ │ │ ├── file_browser_worker.c │ │ │ ├── file_browser_worker.h │ │ │ ├── loading.c │ │ │ ├── loading.h │ │ │ ├── menu.c │ │ │ ├── menu.h │ │ │ ├── popup.c │ │ │ ├── popup.h │ │ │ ├── submenu.c │ │ │ ├── submenu.h │ │ │ ├── text_box.c │ │ │ ├── text_box.h │ │ │ ├── text_input.c │ │ │ ├── text_input.h │ │ │ ├── validators.c │ │ │ ├── validators.h │ │ │ ├── variable_item_list.c │ │ │ ├── variable_item_list.h │ │ │ ├── widget.c │ │ │ ├── widget.h │ │ │ └── widget_elements │ │ │ │ ├── widget_element.h │ │ │ │ ├── widget_element_button.c │ │ │ │ ├── widget_element_frame.c │ │ │ │ ├── widget_element_i.h │ │ │ │ ├── widget_element_icon.c │ │ │ │ ├── widget_element_string.c │ │ │ │ ├── widget_element_string_multiline.c │ │ │ │ ├── widget_element_text_box.c │ │ │ │ └── widget_element_text_scroll.c │ │ ├── scene_manager.c │ │ ├── scene_manager.h │ │ ├── scene_manager_i.h │ │ ├── view.c │ │ ├── view.h │ │ ├── view_dispatcher.c │ │ ├── view_dispatcher.h │ │ ├── view_dispatcher_i.h │ │ ├── view_i.h │ │ ├── view_port.c │ │ ├── view_port.h │ │ ├── view_port_i.h │ │ ├── view_stack.c │ │ └── view_stack.h │ ├── ibuttonsrv │ │ ├── application.fam │ │ └── ibuttonsrv_cli.c │ ├── infraredsrv │ │ ├── application.fam │ │ ├── infrared_brute_force.c │ │ ├── infrared_brute_force.h │ │ ├── infrared_cli.c │ │ ├── infrared_signal.c │ │ └── infrared_signal.h │ ├── input │ │ ├── application.fam │ │ ├── input.c │ │ ├── input.h │ │ ├── input_cli.c │ │ └── input_i.h │ ├── lfrfidsrv │ │ ├── application.fam │ │ └── lfrfid_cli.c │ ├── loader │ │ ├── application.fam │ │ ├── loader.c │ │ ├── loader.h │ │ └── loader_i.h │ ├── namechangersrv │ │ ├── application.fam │ │ ├── namechangersrv.c │ │ └── namechangersrv.h │ ├── notification │ │ ├── application.fam │ │ ├── notification.h │ │ ├── notification_app.c │ │ ├── notification_app.h │ │ ├── notification_app_api.c │ │ ├── notification_messages.c │ │ ├── notification_messages.h │ │ ├── notification_messages_notes.c │ │ ├── notification_messages_notes.h │ │ └── notification_settings_filename.h │ ├── power │ │ ├── application.fam │ │ ├── power_cli.c │ │ ├── power_cli.h │ │ ├── power_service │ │ │ ├── power.c │ │ │ ├── power.h │ │ │ ├── power_api.c │ │ │ ├── power_i.h │ │ │ └── views │ │ │ │ ├── power_off.c │ │ │ │ ├── power_off.h │ │ │ │ ├── power_unplug_usb.c │ │ │ │ └── power_unplug_usb.h │ │ ├── power_settings.h │ │ └── power_settings_filename.h │ ├── rpc │ │ ├── application.fam │ │ ├── rpc.c │ │ ├── rpc.h │ │ ├── rpc_app.c │ │ ├── rpc_app.h │ │ ├── rpc_cli.c │ │ ├── rpc_debug.c │ │ ├── rpc_gpio.c │ │ ├── rpc_gui.c │ │ ├── rpc_i.h │ │ ├── rpc_property.c │ │ ├── rpc_storage.c │ │ └── rpc_system.c │ └── storage │ │ ├── application.fam │ │ ├── filesystem_api.c │ │ ├── filesystem_api_defines.h │ │ ├── filesystem_api_internal.h │ │ ├── storage.c │ │ ├── storage.h │ │ ├── storage_cli.c │ │ ├── storage_external_api.c │ │ ├── storage_glue.c │ │ ├── storage_glue.h │ │ ├── storage_i.h │ │ ├── storage_internal_api.c │ │ ├── storage_message.h │ │ ├── storage_processing.c │ │ ├── storage_processing.h │ │ ├── storage_sd_api.c │ │ ├── storage_sd_api.h │ │ ├── storage_test_app.c │ │ └── storages │ │ ├── sd_notify.c │ │ ├── sd_notify.h │ │ ├── storage_ext.c │ │ ├── storage_ext.h │ │ ├── storage_int.c │ │ └── storage_int.h ├── settings │ ├── about │ │ ├── about.c │ │ └── application.fam │ ├── application.fam │ ├── bt_settings_app │ │ ├── application.fam │ │ ├── bt_settings_app.c │ │ ├── bt_settings_app.h │ │ └── scenes │ │ │ ├── bt_settings_scene.c │ │ │ ├── bt_settings_scene.h │ │ │ ├── bt_settings_scene_config.h │ │ │ ├── bt_settings_scene_forget_dev_confirm.c │ │ │ ├── bt_settings_scene_forget_dev_success.c │ │ │ └── bt_settings_scene_start.c │ ├── desktop_settings │ │ ├── application.fam │ │ ├── desktop_settings_app.c │ │ ├── desktop_settings_app.h │ │ ├── scenes │ │ │ ├── desktop_settings_scene.c │ │ │ ├── desktop_settings_scene.h │ │ │ ├── desktop_settings_scene_config.h │ │ │ ├── desktop_settings_scene_favorite.c │ │ │ ├── desktop_settings_scene_i.h │ │ │ ├── desktop_settings_scene_pin_auth.c │ │ │ ├── desktop_settings_scene_pin_disable.c │ │ │ ├── desktop_settings_scene_pin_error.c │ │ │ ├── desktop_settings_scene_pin_menu.c │ │ │ ├── desktop_settings_scene_pin_setup.c │ │ │ ├── desktop_settings_scene_pin_setup_done.c │ │ │ ├── desktop_settings_scene_pin_setup_howto.c │ │ │ ├── desktop_settings_scene_pin_setup_howto2.c │ │ │ └── desktop_settings_scene_start.c │ │ └── views │ │ │ ├── desktop_settings_view_pin_setup_howto.c │ │ │ ├── desktop_settings_view_pin_setup_howto.h │ │ │ ├── desktop_settings_view_pin_setup_howto2.c │ │ │ └── desktop_settings_view_pin_setup_howto2.h │ ├── dolphin_passport │ │ ├── application.fam │ │ └── passport.c │ ├── notification_settings │ │ ├── application.fam │ │ └── notification_settings_app.c │ ├── power_settings_app │ │ ├── application.fam │ │ ├── power_settings.h │ │ ├── power_settings_app.c │ │ ├── power_settings_app.h │ │ ├── power_settings_filename.h │ │ ├── scenes │ │ │ ├── power_settings_scene.c │ │ │ ├── power_settings_scene.h │ │ │ ├── power_settings_scene_battery_info.c │ │ │ ├── power_settings_scene_config.h │ │ │ ├── power_settings_scene_power_off.c │ │ │ ├── power_settings_scene_reboot.c │ │ │ ├── power_settings_scene_shutdown_idle.c │ │ │ └── power_settings_scene_start.c │ │ └── views │ │ │ ├── battery_info.c │ │ │ └── battery_info.h │ ├── storage_settings │ │ ├── application.fam │ │ ├── scenes │ │ │ ├── storage_settings_scene.c │ │ │ ├── storage_settings_scene.h │ │ │ ├── storage_settings_scene_benchmark.c │ │ │ ├── storage_settings_scene_config.h │ │ │ ├── storage_settings_scene_factory_reset.c │ │ │ ├── storage_settings_scene_format_confirm.c │ │ │ ├── storage_settings_scene_formatting.c │ │ │ ├── storage_settings_scene_internal_info.c │ │ │ ├── storage_settings_scene_sd_info.c │ │ │ ├── storage_settings_scene_start.c │ │ │ ├── storage_settings_scene_unmount_confirm.c │ │ │ └── storage_settings_scene_unmounted.c │ │ ├── storage_settings.c │ │ └── storage_settings.h │ └── system │ │ ├── application.fam │ │ ├── system_settings.c │ │ └── system_settings.h └── system │ ├── application.fam │ ├── storage_move_to_sd │ ├── application.fam │ ├── scenes │ │ ├── storage_move_to_sd_scene.c │ │ ├── storage_move_to_sd_scene.h │ │ ├── storage_move_to_sd_scene_config.h │ │ ├── storage_move_to_sd_scene_confirm.c │ │ └── storage_move_to_sd_scene_progress.c │ ├── storage_move_to_sd.c │ └── storage_move_to_sd.h │ └── updater │ ├── application.fam │ ├── cli │ └── updater_cli.c │ ├── scenes │ ├── updater_scene.c │ ├── updater_scene.h │ ├── updater_scene_config.h │ ├── updater_scene_error.c │ ├── updater_scene_loadcfg.c │ └── updater_scene_main.c │ ├── updater.c │ ├── updater_i.h │ ├── util │ ├── update_task.c │ ├── update_task.h │ ├── update_task_i.h │ ├── update_task_worker_backup.c │ └── update_task_worker_flasher.c │ └── views │ ├── updater_main.c │ └── updater_main.h ├── applications_user ├── .gitignore └── README.md ├── assets ├── .gitignore ├── ReadMe.md ├── SConscript ├── dolphin │ ├── ReadMe.md │ ├── blocking │ │ ├── L0_NewMail_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L0_NoDb_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L0_SdBad_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ └── meta.txt │ │ ├── L0_SdOk_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L0_Url_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L1_Evolution_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ └── meta.txt │ │ ├── L2_Evolution_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ └── meta.txt │ │ └── manifest.txt │ ├── external │ │ ├── L1_Boxing_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ └── meta.txt │ │ ├── L1_Cry_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── meta.txt │ │ ├── L1_Furippa1_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Laptop_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── meta.txt │ │ ├── L1_Leaving_sad_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Mad_fist_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Mods_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_19.png │ │ │ ├── frame_2.png │ │ │ ├── frame_20.png │ │ │ ├── frame_21.png │ │ │ ├── frame_22.png │ │ │ ├── frame_23.png │ │ │ ├── frame_24.png │ │ │ ├── frame_25.png │ │ │ ├── frame_26.png │ │ │ ├── frame_27.png │ │ │ ├── frame_28.png │ │ │ ├── frame_29.png │ │ │ ├── frame_3.png │ │ │ ├── frame_30.png │ │ │ ├── frame_31.png │ │ │ ├── frame_32.png │ │ │ ├── frame_33.png │ │ │ ├── frame_34.png │ │ │ ├── frame_35.png │ │ │ ├── frame_36.png │ │ │ ├── frame_37.png │ │ │ ├── frame_38.png │ │ │ ├── frame_39.png │ │ │ ├── frame_4.png │ │ │ ├── frame_40.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Painting_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Read_books_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ └── meta.txt │ │ ├── L1_Recording_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Sleep_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L1_Waves_128x50 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L2_Furippa2_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L2_Hacking_pc_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ └── meta.txt │ │ ├── L2_Soldering_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Furippa3_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Hijack_radio_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Lab_research_128x54 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ └── manifest.txt │ └── internal │ │ ├── L1_BadBattery_128x47 │ │ ├── frame_0.png │ │ ├── frame_1.png │ │ └── meta.txt │ │ ├── L1_NoSd_128x49 │ │ ├── frame_0.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── frame_3.png │ │ ├── frame_4.png │ │ ├── frame_5.png │ │ └── meta.txt │ │ ├── L1_Tv_128x47 │ │ ├── frame_0.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── frame_3.png │ │ ├── frame_4.png │ │ ├── frame_5.png │ │ ├── frame_6.png │ │ ├── frame_7.png │ │ └── meta.txt │ │ └── manifest.txt ├── icons │ ├── About │ │ ├── Certification1_103x56.png │ │ └── Certification2_98x33.png │ ├── Animations │ │ ├── Levelup1_128x64 │ │ │ ├── frame_00.png │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ └── Levelup2_128x64 │ │ │ ├── frame_00.png │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ ├── Archive │ │ ├── 125_10px.png │ │ ├── Apps_10px.png │ │ ├── Nfc_10px.png │ │ ├── back_10px.png │ │ ├── badusb_10px.png │ │ ├── dir_10px.png │ │ ├── ibutt_10px.png │ │ ├── ir_10px.png │ │ ├── keyboard_10px.png │ │ ├── loading_10px.png │ │ ├── music_10px.png │ │ ├── sub1_10px.png │ │ ├── u2f_10px.png │ │ ├── unknown_10px.png │ │ └── update_10px.png │ ├── BLE │ │ ├── BLE_HID │ │ │ ├── Ble_connected_15x15.png │ │ │ ├── Ble_disconnected_15x15.png │ │ │ ├── Button_18x18.png │ │ │ ├── Circles_47x47.png │ │ │ ├── Left_mouse_icon_9x9.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Ok_btn_pressed_13x13.png │ │ │ ├── Pressed_Button_13x13.png │ │ │ ├── Right_mouse_icon_9x9.png │ │ │ ├── Space_65x18.png │ │ │ ├── Voldwn_6x6.png │ │ │ └── Volup_8x6.png │ │ └── BLE_Pairing_128x64.png │ ├── BadUsb │ │ ├── Clock_18x18.png │ │ ├── Error_18x18.png │ │ ├── EviSmile1_18x21.png │ │ ├── EviSmile2_18x21.png │ │ ├── EviWaiting1_18x21.png │ │ ├── EviWaiting2_18x21.png │ │ ├── Percent_10x14.png │ │ ├── Smile_18x18.png │ │ └── UsbTree_48x22.png │ ├── Common │ │ ├── ActiveConnection_50x64.png │ │ ├── ButtonCenter_7x7.png │ │ ├── ButtonDown_7x4.png │ │ ├── ButtonLeftSmall_3x5.png │ │ ├── ButtonLeft_4x7.png │ │ ├── ButtonRightSmall_3x5.png │ │ ├── ButtonRight_4x7.png │ │ ├── ButtonUp_7x4.png │ │ ├── DFU_128x50.png │ │ ├── Loading_24 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ └── frame_rate │ │ ├── Round_loader_8x8 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ └── frame_rate │ │ └── Warning_30x23.png │ ├── Dolphin │ │ └── DolphinCommon_56x48.png │ ├── GPIO │ │ ├── ArrowDownEmpty_14x15.png │ │ ├── ArrowDownFilled_14x15.png │ │ ├── ArrowUpEmpty_14x15.png │ │ └── ArrowUpFilled_14x15.png │ ├── Infrared │ │ ├── DolphinReadingSuccess_59x63.png │ │ ├── Down_25x27.png │ │ ├── Down_hvr_25x27.png │ │ ├── InfraredArrowDown_4x8.png │ │ ├── InfraredArrowUp_4x8.png │ │ ├── InfraredLearnShort_128x31.png │ │ ├── Mode_25x27.png │ │ ├── Mode_hvr_25x27.png │ │ ├── Mute_25x27.png │ │ ├── Mute_hvr_25x27.png │ │ ├── Power_25x27.png │ │ ├── Power_hvr_25x27.png │ │ ├── Rotate_25x27.png │ │ ├── Rotate_hvr_25x27.png │ │ ├── Swing_25x27.png │ │ ├── Swing_hvr_25x27.png │ │ ├── Timer_25x27.png │ │ ├── Timer_hvr_25x27.png │ │ ├── Up_25x27.png │ │ ├── Up_hvr_25x27.png │ │ ├── Vol_down_25x27.png │ │ ├── Vol_down_hvr_25x27.png │ │ ├── Vol_up_25x27.png │ │ └── Vol_up_hvr_25x27.png │ ├── Interface │ │ ├── DoorLeft_70x55.png │ │ ├── DoorRight_70x55.png │ │ ├── SmallArrowDown_3x5.png │ │ ├── SmallArrowDown_4x7.png │ │ ├── SmallArrowUp_3x5.png │ │ ├── SmallArrowUp_4x7.png │ │ └── WarningDolphin_45x42.png │ ├── Keyboard │ │ ├── KeyBackspaceSelected_16x9.png │ │ ├── KeyBackspace_16x9.png │ │ ├── KeySaveSelected_24x11.png │ │ └── KeySave_24x11.png │ ├── MainMenu │ │ ├── 125khz_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── BadUsb_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ └── frame_rate │ │ ├── Clock_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ └── frame_rate │ │ ├── Debug_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── FileManager_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ ├── GPIO_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ └── frame_rate │ │ ├── Infrared_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ └── frame_rate │ │ ├── NFC_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── Plugins_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ └── frame_rate │ │ ├── Settings_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ ├── Sub1ghz_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ └── frame_rate │ │ ├── U2F_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── UniRFRemix_14 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── frame_rate │ │ └── iButton_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ └── frame_rate │ ├── NFC │ │ ├── ArrowC_1_36x36.png │ │ ├── Detailed_chip_17x13.png │ │ ├── Keychain_39x36.png │ │ ├── Medium-chip-22x21.png │ │ ├── Modern_reader_18x34.png │ │ ├── Move_flipper_26x39.png │ │ ├── NFC_manual_60x50.png │ │ ├── Release_arrow_18x15.png │ │ ├── Restoring_38x32.png │ │ └── Tap_reader_36x38.png │ ├── PIN │ │ ├── Pin_arrow_down_7x9.png │ │ ├── Pin_arrow_left_9x7.png │ │ ├── Pin_arrow_right_9x7.png │ │ ├── Pin_arrow_up_7x9.png │ │ ├── Pin_attention_dpad_29x29.png │ │ ├── Pin_back_arrow_10x8.png │ │ ├── Pin_back_full_40x8.png │ │ ├── Pin_cell_13x13.png │ │ ├── Pin_pointer_5x3.png │ │ └── Pin_star_7x7.png │ ├── Passport │ │ ├── G0ku.png │ │ ├── g0ku_1.png │ │ ├── g0ku_2.png │ │ ├── g0ku_3.png │ │ ├── passport_bad1_46x49.png │ │ ├── passport_bad2_46x49.png │ │ ├── passport_bad3_46x49.png │ │ ├── passport_bottom_128x18.png │ │ ├── passport_genderfemale_5x9.png │ │ ├── passport_gendermale_5x9.png │ │ ├── passport_happy1_46x49.png │ │ ├── passport_happy2_46x49.png │ │ ├── passport_happy3_46x49.png │ │ ├── passport_left_6x46.png │ │ ├── passport_okay1_46x49.png │ │ ├── passport_okay2_46x49.png │ │ └── passport_okay3_46x49.png │ ├── Power │ │ ├── BatteryBody_52x28.png │ │ ├── Battery_16x16.png │ │ ├── FaceCharging_29x14.png │ │ ├── FaceConfused_29x14.png │ │ ├── FaceNopower_29x14.png │ │ ├── FaceNormal_29x14.png │ │ ├── Health_16x16.png │ │ ├── Temperature_16x16.png │ │ ├── Unplug_bg_bottom_128x10.png │ │ ├── Unplug_bg_top_128x14.png │ │ └── Voltage_16x16.png │ ├── RFID │ │ ├── RFIDBigChip_37x36.png │ │ ├── RFIDDolphinReceive_97x61.png │ │ ├── RFIDDolphinSend_97x61.png │ │ ├── RFIDDolphinSuccess_108x57.png │ │ └── RFIDSmallChip_14x14.png │ ├── SDCard │ │ └── SDQuestion_35x43.png │ ├── Settings │ │ └── Cry_dolph_55x52.png │ ├── StatusBar │ │ ├── Alert_9x8.png │ │ ├── Attention_5x8.png │ │ ├── Background_128x11.png │ │ ├── Battery_26x8.png │ │ ├── Bluetooth_Connected_16x8.png │ │ ├── Bluetooth_Idle_5x8.png │ │ ├── Charging-lightning_9x10.png │ │ ├── Charging-lightning_mask_9x10.png │ │ ├── GameMode_11x8.png │ │ ├── Hidden_window_9x8.png │ │ ├── Lock_8x8.png │ │ ├── SDcardFail_11x8.png │ │ └── SDcardMounted_11x8.png │ ├── SubGhz │ │ ├── Dynamic_9x7.png │ │ ├── Lock_7x8.png │ │ ├── MHz_25x11.png │ │ ├── Quest_7x8.png │ │ ├── Raw_9x7.png │ │ ├── Scanning_123x52.png │ │ ├── Static_9x7.png │ │ └── Unlock_7x8.png │ ├── U2F │ │ ├── Auth_62x31.png │ │ ├── Connect_me_62x31.png │ │ ├── Connected_62x31.png │ │ ├── Drive_112x35.png │ │ └── Error_62x31.png │ ├── Update │ │ └── Updating_32x40.png │ └── iButton │ │ ├── DolphinMafia_115x62.png │ │ ├── DolphinNice_96x59.png │ │ ├── DolphinWait_61x59.png │ │ ├── iButtonDolphinVerySuccess_108x52.png │ │ └── iButtonKey_49x44.png ├── resources │ ├── badusb │ │ ├── .badusb.settings │ │ ├── Kiosk-Evasion-Bruteforce.txt │ │ ├── Wifi-Stealer_ORG.txt │ │ ├── demo_macos.txt │ │ ├── demo_windows.txt │ │ └── layouts │ │ │ ├── ba-BA.kl │ │ │ ├── da-DA.kl │ │ │ ├── de-CH.kl │ │ │ ├── de-DE.kl │ │ │ ├── dvorak.kl │ │ │ ├── en-UK.kl │ │ │ ├── en-US.kl │ │ │ ├── es-ES.kl │ │ │ ├── fr-BE.kl │ │ │ ├── fr-CH.kl │ │ │ ├── fr-FR.kl │ │ │ ├── hr-HR.kl │ │ │ ├── hu-HU.kl │ │ │ ├── it-IT.kl │ │ │ ├── nb-NO.kl │ │ │ ├── nl-NL.kl │ │ │ ├── pt-BR.kl │ │ │ ├── pt-PT.kl │ │ │ ├── si-SI.kl │ │ │ ├── sk-SK.kl │ │ │ ├── sv-SE.kl │ │ │ └── tr-TR.kl │ ├── dolphin │ │ ├── L1_Boxing_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ └── meta.txt │ │ ├── L1_Cry_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── meta.txt │ │ ├── L1_Furippa1_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Laptop_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── meta.txt │ │ ├── L1_Leaving_sad_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Mad_fist_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Mods_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_19.png │ │ │ ├── frame_2.png │ │ │ ├── frame_20.png │ │ │ ├── frame_21.png │ │ │ ├── frame_22.png │ │ │ ├── frame_23.png │ │ │ ├── frame_24.png │ │ │ ├── frame_25.png │ │ │ ├── frame_26.png │ │ │ ├── frame_27.png │ │ │ ├── frame_28.png │ │ │ ├── frame_29.png │ │ │ ├── frame_3.png │ │ │ ├── frame_30.png │ │ │ ├── frame_31.png │ │ │ ├── frame_32.png │ │ │ ├── frame_33.png │ │ │ ├── frame_34.png │ │ │ ├── frame_35.png │ │ │ ├── frame_36.png │ │ │ ├── frame_37.png │ │ │ ├── frame_38.png │ │ │ ├── frame_39.png │ │ │ ├── frame_4.png │ │ │ ├── frame_40.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Painting_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Read_books_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ └── meta.txt │ │ ├── L1_Recording_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Sleep_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L1_Waves_128x50 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L2_Furippa2_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L2_Hacking_pc_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ └── meta.txt │ │ ├── L2_Soldering_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Furippa3_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Hijack_radio_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Lab_research_128x54 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── README.md │ │ ├── manifest.txt │ │ └── name.txt.example │ ├── dolphin_restorer │ │ └── .dolphin.state.bak │ ├── ibtnfuzzer │ │ ├── example_uids_cyfral.txt │ │ ├── example_uids_ds1990.txt │ │ └── example_uids_metakom.txt │ ├── infrared │ │ └── assets │ │ │ ├── ac.ir │ │ │ ├── audio.ir │ │ │ ├── fans.ir │ │ │ ├── projectors.ir │ │ │ └── tv.ir │ ├── lfrfid │ │ └── rfidfuzzer │ │ │ ├── example_uids_em4100.txt │ │ │ ├── example_uids_h10301.txt │ │ │ ├── example_uids_hidprox.txt │ │ │ └── example_uids_pac.txt │ ├── music_player │ │ ├── Contra.txt │ │ ├── Doom.txt │ │ ├── Evangelion.txt │ │ ├── Evangelion_Exp.txt │ │ ├── FF7_Victory_Fanfare.fmf │ │ ├── FF9_To_Zanarkand.txt │ │ ├── FF9_chocobo_theme.txt │ │ ├── FF9_moogle_theme.txt │ │ ├── Final_Fantasy_Victory_Fanfare.txt │ │ ├── GorillazClintEastwood.txt │ │ ├── Hello_Flip.txt │ │ ├── JamesBondTheme.txt │ │ ├── LegendofZelda_Title.txt │ │ ├── Littleroot_Town_Pokemon.txt │ │ ├── Marble_Machine.fmf │ │ ├── MortalKombat.txt │ │ ├── Pokemon_Center.txt │ │ ├── Rickroll_Chorus.fmf │ │ ├── Spider-Man_Theme.txt │ │ ├── Star_Wars_Imp_March.txt │ │ ├── SuperMarioBrothers_Death.txt │ │ ├── SuperMarioBrothers_Theme.txt │ │ ├── TMNT.txt │ │ ├── Take_On_Me.txt │ │ ├── Tetris_Theme.txt │ │ └── pac_man.txt │ ├── nfc │ │ ├── RickRoll.nfc │ │ ├── SmashAmiibo │ │ │ └── L1NK50_G0DL1NK.nfc │ │ └── assets │ │ │ ├── aid.nfc │ │ │ ├── country_code.nfc │ │ │ ├── currency_code.nfc │ │ │ └── mf_classic_dict.nfc │ ├── subghz │ │ ├── Handicap │ │ │ ├── Handicap_button_1270.sub │ │ │ ├── Handicap_button_1650.sub │ │ │ ├── handicap_push_door.sub │ │ │ └── ook650_315brute.sub │ │ ├── Misc │ │ │ ├── Crosswalk_Unknown.sub │ │ │ ├── Go1.sub │ │ │ └── Sextoy │ │ │ │ ├── Sextoy1.sub │ │ │ │ ├── Sextoy2.sub │ │ │ │ ├── Sextoy3.sub │ │ │ │ └── Sextoy4.sub │ │ ├── Vehicles │ │ │ └── Tesla │ │ │ │ ├── Tesla_charge_AM270.sub │ │ │ │ └── Tesla_charge_AM650.sub │ │ ├── assets │ │ │ ├── README.md │ │ │ ├── came_atomo │ │ │ ├── extend_range.txt │ │ │ ├── keeloq_mfcodes │ │ │ ├── keeloq_mfcodes_user.example │ │ │ ├── nice_flor_s │ │ │ ├── setting_user.pocsag │ │ │ └── setting_user.txt │ │ ├── playlist │ │ │ └── example_tesla.txt │ │ └── unirf │ │ │ ├── touchtunes_brute_map.txt │ │ │ └── universal_rf_map.txt │ ├── u2f │ │ └── assets │ │ │ ├── cert.der │ │ │ └── cert_key.u2f │ └── wav_player │ │ └── sonicscrewdriver.wav ├── slideshow │ ├── first_start │ │ ├── frame_00.png │ │ ├── frame_01.png │ │ ├── frame_02.png │ │ ├── frame_03.png │ │ ├── frame_04.png │ │ └── frame_05.png │ └── update_default │ │ └── frame_00.png └── unit_tests │ ├── infrared │ ├── test_kaseikyo.irtest │ ├── test_nec.irtest │ ├── test_nec42.irtest │ ├── test_nec42ext.irtest │ ├── test_necext.irtest │ ├── test_rc5.irtest │ ├── test_rc5x.irtest │ ├── test_rc6.irtest │ ├── test_samsung32.irtest │ └── test_sirc.irtest │ ├── nfc │ ├── nfc_nfca_signal_long.nfc │ └── nfc_nfca_signal_short.nfc │ └── subghz │ ├── ansonic.sub │ ├── ansonic_raw.sub │ ├── bett.sub │ ├── bett_raw.sub │ ├── came.sub │ ├── came_atomo_raw.sub │ ├── came_raw.sub │ ├── came_twee.sub │ ├── came_twee_raw.sub │ ├── cenmax_raw.sub │ ├── clemsa.sub │ ├── clemsa_raw.sub │ ├── doitrand.sub │ ├── doitrand_raw.sub │ ├── doorhan.sub │ ├── doorhan_raw.sub │ ├── faac_slh_raw.sub │ ├── gate_tx.sub │ ├── gate_tx_raw.sub │ ├── holtek.sub │ ├── holtek_raw.sub │ ├── honeywell_wdb.sub │ ├── honeywell_wdb_raw.sub │ ├── hormann_hsm_raw.sub │ ├── ido_117_111_raw.sub │ ├── intertechno_v3.sub │ ├── intertechno_v3_raw.sub │ ├── kia_seed_raw.sub │ ├── linear.sub │ ├── linear_raw.sub │ ├── magellan.sub │ ├── magellan_raw.sub │ ├── marantec.sub │ ├── marantec_raw.sub │ ├── megacode.sub │ ├── megacode_raw.sub │ ├── nero_radio_raw.sub │ ├── nero_sketch_raw.sub │ ├── nice_flo.sub │ ├── nice_flo_raw.sub │ ├── nice_flor_s_raw.sub │ ├── phoenix_v2.sub │ ├── phoenix_v2_raw.sub │ ├── pocsag.sub │ ├── power_smart.sub │ ├── power_smart_raw.sub │ ├── princeton.sub │ ├── princeton_raw.sub │ ├── scher_khan_magic_code.sub │ ├── security_pls_1_0.sub │ ├── security_pls_1_0_raw.sub │ ├── security_pls_2_0.sub │ ├── security_pls_2_0_raw.sub │ ├── somfy_keytis_raw.sub │ ├── somfy_telis_raw.sub │ └── test_random_raw.sub ├── brew-cask └── gcc-arm-embedded.rb ├── debug ├── FreeRTOS │ ├── FreeRTOS.py │ ├── FreeRTOSgdb │ │ ├── EventGroup.py │ │ ├── GDBCommands.py │ │ ├── HandleRegistry.py │ │ ├── List.py │ │ ├── QueueTools.py │ │ ├── Task.py │ │ ├── Types.py │ │ └── __init__.py │ ├── LICENSE │ └── README.md ├── PyCortexMDebug │ ├── LICENSE │ ├── PyCortexMDebug.py │ ├── README.md │ └── cmdebug │ │ ├── __init__.py │ │ ├── dwt_gdb.py │ │ ├── svd.py │ │ ├── svd_gdb.py │ │ └── x2d.py ├── STM32WB55_CM4.svd ├── flipperapps.py ├── fw.jflash └── stm32wbx.cfg ├── documentation ├── .gitignore ├── AppManifests.md ├── AppsOnSDCard.md ├── BarcodeGenerator.md ├── BluetoothRemote.md ├── CustomFlipperName.md ├── DangerousSettings.md ├── Doxyfile ├── HowToBuild.md ├── HowToInstall.md ├── KeyCombo.md ├── MultiConverter.md ├── NRF24.md ├── OTA.md ├── SentrySafe.md ├── SubGHzRemotePlugin.md ├── SubGHzSettings.md ├── UnitTests.md ├── UniversalRemotes.md ├── fbt.md └── keyboard_layout_file.md ├── fbt ├── fbt.cmd ├── fbt_options.py ├── firmware.scons ├── firmware ├── ReadMe.md ├── SConscript └── targets │ ├── f7 │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── alt_boot.h │ │ ├── stm32.h │ │ └── stm32_assert.h │ ├── Src │ │ ├── dfu.c │ │ ├── main.c │ │ ├── system_stm32wbxx.c │ │ └── update.c │ ├── api_symbols.csv │ ├── application_ext.ld │ ├── ble_glue │ │ ├── app_common.h │ │ ├── app_conf.h │ │ ├── app_debug.c │ │ ├── app_debug.h │ │ ├── battery_service.c │ │ ├── battery_service.h │ │ ├── ble_app.c │ │ ├── ble_app.h │ │ ├── ble_conf.h │ │ ├── ble_const.h │ │ ├── ble_dbg_conf.h │ │ ├── ble_glue.c │ │ ├── ble_glue.h │ │ ├── compiler.h │ │ ├── dev_info_service.c │ │ ├── dev_info_service.h │ │ ├── gap.c │ │ ├── gap.h │ │ ├── hid_service.c │ │ ├── hid_service.h │ │ ├── hw_conf.h │ │ ├── hw_if.h │ │ ├── hw_ipcc.c │ │ ├── osal.h │ │ ├── serial_service.c │ │ ├── serial_service.h │ │ ├── tl_dbg_conf.h │ │ └── utilities_conf.h │ ├── fatfs │ │ ├── fatfs.c │ │ ├── fatfs.h │ │ ├── ffconf.h │ │ ├── sector_cache.c │ │ ├── sector_cache.h │ │ ├── spi_sd_hal.c │ │ ├── stm32_adafruit_sd.c │ │ ├── stm32_adafruit_sd.h │ │ ├── syscall.c │ │ ├── user_diskio.c │ │ └── user_diskio.h │ ├── furi_hal │ │ ├── furi_hal.c │ │ ├── furi_hal_bt.c │ │ ├── furi_hal_bt_hid.c │ │ ├── furi_hal_bt_serial.c │ │ ├── furi_hal_clock.c │ │ ├── furi_hal_clock.h │ │ ├── furi_hal_compress.c │ │ ├── furi_hal_console.c │ │ ├── furi_hal_console.h │ │ ├── furi_hal_cortex.c │ │ ├── furi_hal_crypto.c │ │ ├── furi_hal_debug.c │ │ ├── furi_hal_flash.c │ │ ├── furi_hal_flash.h │ │ ├── furi_hal_gpio.c │ │ ├── furi_hal_gpio.h │ │ ├── furi_hal_i2c.c │ │ ├── furi_hal_i2c_config.c │ │ ├── furi_hal_i2c_config.h │ │ ├── furi_hal_i2c_types.h │ │ ├── furi_hal_ibutton.c │ │ ├── furi_hal_idle_timer.h │ │ ├── furi_hal_info.c │ │ ├── furi_hal_infrared.c │ │ ├── furi_hal_interrupt.c │ │ ├── furi_hal_interrupt.h │ │ ├── furi_hal_light.c │ │ ├── furi_hal_memory.c │ │ ├── furi_hal_mpu.c │ │ ├── furi_hal_nfc.c │ │ ├── furi_hal_os.c │ │ ├── furi_hal_os.h │ │ ├── furi_hal_power.c │ │ ├── furi_hal_pwm.c │ │ ├── furi_hal_pwm.h │ │ ├── furi_hal_random.c │ │ ├── furi_hal_region.c │ │ ├── furi_hal_resources.c │ │ ├── furi_hal_resources.h │ │ ├── furi_hal_rfid.c │ │ ├── furi_hal_rtc.c │ │ ├── furi_hal_sd.c │ │ ├── furi_hal_speaker.c │ │ ├── furi_hal_spi.c │ │ ├── furi_hal_spi_config.c │ │ ├── furi_hal_spi_config.h │ │ ├── furi_hal_spi_types.h │ │ ├── furi_hal_subghz.c │ │ ├── furi_hal_subghz_configs.h │ │ ├── furi_hal_uart.c │ │ ├── furi_hal_uart.h │ │ ├── furi_hal_usb.c │ │ ├── furi_hal_usb_cdc.c │ │ ├── furi_hal_usb_cdc.h │ │ ├── furi_hal_usb_hid.c │ │ ├── furi_hal_usb_i.h │ │ ├── furi_hal_usb_u2f.c │ │ ├── furi_hal_version.c │ │ └── furi_hal_vibro.c │ ├── platform_specific │ │ └── intrinsic_export.h │ ├── startup_stm32wb55xx_cm4.s │ ├── stm32wb55xx_flash.ld │ └── stm32wb55xx_ram_fw.ld │ └── furi_hal_include │ ├── furi_hal.h │ ├── furi_hal_bt.h │ ├── furi_hal_bt_hid.h │ ├── furi_hal_bt_serial.h │ ├── furi_hal_compress.h │ ├── furi_hal_cortex.h │ ├── furi_hal_crypto.h │ ├── furi_hal_debug.h │ ├── furi_hal_i2c.h │ ├── furi_hal_ibutton.h │ ├── furi_hal_info.h │ ├── furi_hal_infrared.h │ ├── furi_hal_light.h │ ├── furi_hal_memory.h │ ├── furi_hal_mpu.h │ ├── furi_hal_nfc.h │ ├── furi_hal_power.h │ ├── furi_hal_random.h │ ├── furi_hal_region.h │ ├── furi_hal_rfid.h │ ├── furi_hal_rtc.h │ ├── furi_hal_sd.h │ ├── furi_hal_speaker.h │ ├── furi_hal_spi.h │ ├── furi_hal_subghz.h │ ├── furi_hal_usb.h │ ├── furi_hal_usb_hid.h │ ├── furi_hal_usb_hid_u2f.h │ ├── furi_hal_version.h │ └── furi_hal_vibro.h ├── furi ├── SConscript ├── core │ ├── base.h │ ├── check.c │ ├── check.h │ ├── common_defines.h │ ├── core_defines.h │ ├── dangerous_defines.h │ ├── event_flag.c │ ├── event_flag.h │ ├── kernel.c │ ├── kernel.h │ ├── log.c │ ├── log.h │ ├── memmgr.c │ ├── memmgr.h │ ├── memmgr_heap.c │ ├── memmgr_heap.h │ ├── message_queue.c │ ├── message_queue.h │ ├── mutex.c │ ├── mutex.h │ ├── pubsub.c │ ├── pubsub.h │ ├── record.c │ ├── record.h │ ├── semaphore.c │ ├── semaphore.h │ ├── stream_buffer.c │ ├── stream_buffer.h │ ├── string.c │ ├── string.h │ ├── thread.c │ ├── thread.h │ ├── timer.c │ ├── timer.h │ ├── valuemutex.c │ └── valuemutex.h ├── flipper.c ├── flipper.h ├── furi.c └── furi.h ├── lib ├── FreeRTOS-glue │ └── task_control_block.h ├── ReadMe.md ├── SConscript ├── ST25RFAL002 │ ├── SConscript │ ├── doc │ │ ├── Release_Notes.html │ │ ├── ST25R3916_MisraComplianceReport.html │ │ ├── _htmresc │ │ │ └── st_logo.png │ │ └── rfal.chm │ ├── include │ │ ├── rfal_analogConfig.h │ │ ├── rfal_chip.h │ │ ├── rfal_crc.h │ │ ├── rfal_dpo.h │ │ ├── rfal_iso15693_2.h │ │ ├── rfal_isoDep.h │ │ ├── rfal_nfc.h │ │ ├── rfal_nfcDep.h │ │ ├── rfal_nfca.h │ │ ├── rfal_nfcb.h │ │ ├── rfal_nfcf.h │ │ ├── rfal_nfcv.h │ │ ├── rfal_rf.h │ │ ├── rfal_st25tb.h │ │ ├── rfal_st25xv.h │ │ ├── rfal_t1t.h │ │ ├── rfal_t2t.h │ │ └── rfal_t4t.h │ ├── platform.c │ ├── platform.h │ ├── source │ │ ├── custom_analog_config.c │ │ ├── rfal_analogConfig.c │ │ ├── rfal_crc.c │ │ ├── rfal_dpo.c │ │ ├── rfal_iso15693_2.c │ │ ├── rfal_isoDep.c │ │ ├── rfal_nfc.c │ │ ├── rfal_nfcDep.c │ │ ├── rfal_nfca.c │ │ ├── rfal_nfcb.c │ │ ├── rfal_nfcf.c │ │ ├── rfal_nfcv.c │ │ ├── rfal_st25tb.c │ │ ├── rfal_st25xv.c │ │ ├── rfal_t1t.c │ │ ├── rfal_t2t.c │ │ ├── rfal_t4t.c │ │ └── st25r3916 │ │ │ ├── rfal_analogConfigTbl.h │ │ │ ├── rfal_dpoTbl.h │ │ │ ├── rfal_features.h │ │ │ ├── rfal_rfst25r3916.c │ │ │ ├── st25r3916.c │ │ │ ├── st25r3916.h │ │ │ ├── st25r3916_aat.c │ │ │ ├── st25r3916_aat.h │ │ │ ├── st25r3916_com.c │ │ │ ├── st25r3916_com.h │ │ │ ├── st25r3916_irq.c │ │ │ ├── st25r3916_irq.h │ │ │ ├── st25r3916_led.c │ │ │ └── st25r3916_led.h │ ├── st_errno.h │ ├── timer.c │ ├── timer.h │ └── utils.h ├── STM32CubeWB.scons ├── app-scened-template │ ├── generic_scene.hpp │ ├── record_controller.hpp │ ├── scene_controller.hpp │ ├── text_store.cpp │ ├── text_store.h │ ├── typeindex_no_rtti.hpp │ ├── view_controller.hpp │ └── view_modules │ │ ├── byte_input_vm.cpp │ │ ├── byte_input_vm.h │ │ ├── dialog_ex_vm.cpp │ │ ├── dialog_ex_vm.h │ │ ├── generic_view_module.h │ │ ├── popup_vm.cpp │ │ ├── popup_vm.h │ │ ├── submenu_vm.cpp │ │ ├── submenu_vm.h │ │ ├── text_input_vm.cpp │ │ └── text_input_vm.h ├── appframe.scons ├── callback-connector │ └── callback-connector.h ├── digital_signal │ ├── digital_signal.c │ └── digital_signal.h ├── drivers │ ├── SConscript │ ├── bq25896.c │ ├── bq25896.h │ ├── bq25896_reg.h │ ├── bq27220.c │ ├── bq27220.h │ ├── bq27220_reg.h │ ├── cc1101.c │ ├── cc1101.h │ ├── cc1101_regs.h │ ├── lp5562.c │ ├── lp5562.h │ └── lp5562_reg.h ├── fatfs │ ├── SConscript │ ├── diskio.c │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ff_gen_drv.c │ ├── ff_gen_drv.h │ ├── ffconf_template.h │ ├── integer.h │ └── option │ │ ├── cc932.c │ │ ├── cc936.c │ │ ├── cc949.c │ │ ├── cc950.c │ │ ├── ccsbcs.c │ │ └── unicode.c ├── flipper_application │ ├── SConscript │ ├── application_manifest.c │ ├── application_manifest.h │ ├── elf │ │ ├── elf.h │ │ ├── elf_api_interface.h │ │ ├── elf_file.c │ │ ├── elf_file.h │ │ └── elf_file_i.h │ ├── flipper_application.c │ └── flipper_application.h ├── flipper_format │ ├── SConscript │ ├── flipper_format.c │ ├── flipper_format.h │ ├── flipper_format_i.h │ ├── flipper_format_stream.c │ ├── flipper_format_stream.h │ └── flipper_format_stream_i.h ├── fnv1a-hash │ ├── fnv1a-hash.c │ └── fnv1a-hash.h ├── freertos.scons ├── heatshrink │ ├── heatshrink_common.h │ ├── heatshrink_config.h │ ├── heatshrink_decoder.c │ ├── heatshrink_decoder.h │ ├── heatshrink_encoder.c │ └── heatshrink_encoder.h ├── infrared │ ├── SConscript │ ├── encoder_decoder │ │ ├── common │ │ │ ├── infrared_common_decoder.c │ │ │ ├── infrared_common_encoder.c │ │ │ ├── infrared_common_i.h │ │ │ └── infrared_common_protocol_defs.c │ │ ├── infrared.c │ │ ├── infrared.h │ │ ├── infrared_i.h │ │ ├── infrared_protocol_defs_i.h │ │ ├── kaseikyo │ │ │ ├── infrared_decoder_kaseikyo.c │ │ │ ├── infrared_encoder_kaseikyo.c │ │ │ └── infrared_kaseikyo_spec.c │ │ ├── nec │ │ │ ├── infrared_decoder_nec.c │ │ │ ├── infrared_encoder_nec.c │ │ │ └── infrared_nec_spec.c │ │ ├── rc5 │ │ │ ├── infrared_decoder_rc5.c │ │ │ ├── infrared_encoder_rc5.c │ │ │ └── infrared_rc5_spec.c │ │ ├── rc6 │ │ │ ├── infrared_decoder_rc6.c │ │ │ ├── infrared_encoder_rc6.c │ │ │ └── infrared_rc6_spec.c │ │ ├── samsung │ │ │ ├── infrared_decoder_samsung.c │ │ │ ├── infrared_encoder_samsung.c │ │ │ └── infrared_samsung_spec.c │ │ └── sirc │ │ │ ├── infrared_decoder_sirc.c │ │ │ ├── infrared_encoder_sirc.c │ │ │ └── infrared_sirc_spec.c │ └── worker │ │ ├── infrared_transmit.c │ │ ├── infrared_transmit.h │ │ ├── infrared_worker.c │ │ └── infrared_worker.h ├── lfrfid │ ├── SConscript │ ├── lfrfid_dict_file.c │ ├── lfrfid_dict_file.h │ ├── lfrfid_raw_file.c │ ├── lfrfid_raw_file.h │ ├── lfrfid_raw_worker.c │ ├── lfrfid_raw_worker.h │ ├── lfrfid_worker.c │ ├── lfrfid_worker.h │ ├── lfrfid_worker_i.h │ ├── lfrfid_worker_modes.c │ ├── protocols │ │ ├── lfrfid_protocols.c │ │ ├── lfrfid_protocols.h │ │ ├── protocol_awid.c │ │ ├── protocol_awid.h │ │ ├── protocol_em4100.c │ │ ├── protocol_em4100.h │ │ ├── protocol_fdx_a.c │ │ ├── protocol_fdx_a.h │ │ ├── protocol_fdx_b.c │ │ ├── protocol_fdx_b.h │ │ ├── protocol_gallagher.c │ │ ├── protocol_gallagher.h │ │ ├── protocol_h10301.c │ │ ├── protocol_h10301.h │ │ ├── protocol_hid_ex_generic.c │ │ ├── protocol_hid_ex_generic.h │ │ ├── protocol_hid_generic.c │ │ ├── protocol_hid_generic.h │ │ ├── protocol_indala26.c │ │ ├── protocol_indala26.h │ │ ├── protocol_io_prox_xsf.c │ │ ├── protocol_io_prox_xsf.h │ │ ├── protocol_jablotron.c │ │ ├── protocol_jablotron.h │ │ ├── protocol_keri.c │ │ ├── protocol_keri.h │ │ ├── protocol_pac_stanley.c │ │ ├── protocol_pac_stanley.h │ │ ├── protocol_paradox.c │ │ ├── protocol_paradox.h │ │ ├── protocol_pyramid.c │ │ ├── protocol_pyramid.h │ │ ├── protocol_viking.c │ │ └── protocol_viking.h │ └── tools │ │ ├── bit_lib.c │ │ ├── bit_lib.h │ │ ├── fsk_demod.c │ │ ├── fsk_demod.h │ │ ├── fsk_ocs.c │ │ ├── fsk_osc.h │ │ ├── t5577.c │ │ ├── t5577.h │ │ ├── varint_pair.c │ │ └── varint_pair.h ├── lfs_config.h ├── libusb_stm32.scons ├── littlefs.scons ├── mbedtls.scons ├── micro-ecc │ ├── LICENSE.txt │ ├── README.md │ ├── asm_arm.inc │ ├── asm_arm_mult_square.inc │ ├── asm_arm_mult_square_umaal.inc │ ├── curve-specific.inc │ ├── platform-specific.inc │ ├── types.h │ ├── uECC.c │ ├── uECC.h │ └── uECC_vli.h ├── microtar.scons ├── misc.scons ├── nfc │ ├── SConscript │ ├── helpers │ │ ├── iso7816.c │ │ ├── iso7816.h │ │ ├── mf_classic_dict.c │ │ ├── mf_classic_dict.h │ │ ├── mfkey32.c │ │ ├── mfkey32.h │ │ ├── mrtd_helpers.c │ │ ├── mrtd_helpers.h │ │ ├── nfc_debug_log.c │ │ ├── nfc_debug_log.h │ │ ├── nfc_debug_pcap.c │ │ ├── nfc_debug_pcap.h │ │ ├── reader_analyzer.c │ │ └── reader_analyzer.h │ ├── nfc_device.c │ ├── nfc_device.h │ ├── nfc_types.c │ ├── nfc_types.h │ ├── nfc_worker.c │ ├── nfc_worker.h │ ├── nfc_worker_i.h │ ├── parsers │ │ ├── all_in_one.c │ │ ├── all_in_one.h │ │ ├── nfc_supported_card.c │ │ ├── nfc_supported_card.h │ │ ├── plantain_4k_parser.c │ │ ├── plantain_4k_parser.h │ │ ├── plantain_parser.c │ │ ├── plantain_parser.h │ │ ├── troika_4k_parser.c │ │ ├── troika_4k_parser.h │ │ ├── troika_parser.c │ │ ├── troika_parser.h │ │ ├── two_cities.c │ │ └── two_cities.h │ └── protocols │ │ ├── crypto1.c │ │ ├── crypto1.h │ │ ├── emv.c │ │ ├── emv.h │ │ ├── mifare_classic.c │ │ ├── mifare_classic.h │ │ ├── mifare_common.c │ │ ├── mifare_common.h │ │ ├── mifare_desfire.c │ │ ├── mifare_desfire.h │ │ ├── mifare_ultralight.c │ │ ├── mifare_ultralight.h │ │ ├── mrtd.c │ │ ├── mrtd.h │ │ ├── nfc_util.c │ │ ├── nfc_util.h │ │ ├── nfca.c │ │ ├── nfca.h │ │ ├── nfca_trans_rx.c │ │ ├── nfca_trans_rx.h │ │ ├── nfcv.c │ │ ├── nfcv.h │ │ ├── slix.c │ │ └── slix.h ├── one_wire │ ├── ibutton │ │ ├── ibutton_key.c │ │ ├── ibutton_key.h │ │ ├── ibutton_key_command.h │ │ ├── ibutton_worker.c │ │ ├── ibutton_worker.h │ │ ├── ibutton_worker_i.h │ │ ├── ibutton_worker_modes.c │ │ ├── ibutton_writer.c │ │ ├── ibutton_writer.h │ │ └── protocols │ │ │ ├── ibutton_protocols.c │ │ │ ├── ibutton_protocols.h │ │ │ ├── protocol_cyfral.c │ │ │ ├── protocol_cyfral.h │ │ │ ├── protocol_metakom.c │ │ │ └── protocol_metakom.h │ ├── maxim_crc.c │ ├── maxim_crc.h │ ├── one_wire_device.c │ ├── one_wire_device.h │ ├── one_wire_host.c │ ├── one_wire_host.h │ ├── one_wire_host_timing.h │ ├── one_wire_slave.c │ ├── one_wire_slave.h │ └── one_wire_slave_i.h ├── print │ ├── SConscript │ ├── printf_tiny.c │ ├── printf_tiny.h │ ├── wrappers.c │ └── wrappers.h ├── pulse_reader │ ├── pulse_reader.c │ └── pulse_reader.h ├── qrcode │ ├── qrcode.c │ └── qrcode.h ├── subghz │ ├── SConscript │ ├── blocks │ │ ├── const.c │ │ ├── const.h │ │ ├── decoder.c │ │ ├── decoder.h │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── generic.c │ │ ├── generic.h │ │ ├── math.c │ │ └── math.h │ ├── environment.c │ ├── environment.h │ ├── protocols │ │ ├── ansonic.c │ │ ├── ansonic.h │ │ ├── base.c │ │ ├── base.h │ │ ├── bett.c │ │ ├── bett.h │ │ ├── came.c │ │ ├── came.h │ │ ├── came_atomo.c │ │ ├── came_atomo.h │ │ ├── came_twee.c │ │ ├── came_twee.h │ │ ├── chamberlain_code.c │ │ ├── chamberlain_code.h │ │ ├── clemsa.c │ │ ├── clemsa.h │ │ ├── doitrand.c │ │ ├── doitrand.h │ │ ├── faac_slh.c │ │ ├── faac_slh.h │ │ ├── gate_tx.c │ │ ├── gate_tx.h │ │ ├── holtek.c │ │ ├── holtek.h │ │ ├── honeywell_wdb.c │ │ ├── honeywell_wdb.h │ │ ├── hormann.c │ │ ├── hormann.h │ │ ├── ido.c │ │ ├── ido.h │ │ ├── intertechno_v3.c │ │ ├── intertechno_v3.h │ │ ├── keeloq.c │ │ ├── keeloq.h │ │ ├── keeloq_common.c │ │ ├── keeloq_common.h │ │ ├── kia.c │ │ ├── kia.h │ │ ├── linear.c │ │ ├── linear.h │ │ ├── magellan.c │ │ ├── magellan.h │ │ ├── marantec.c │ │ ├── marantec.h │ │ ├── megacode.c │ │ ├── megacode.h │ │ ├── nero_radio.c │ │ ├── nero_radio.h │ │ ├── nero_sketch.c │ │ ├── nero_sketch.h │ │ ├── nice_flo.c │ │ ├── nice_flo.h │ │ ├── nice_flor_s.c │ │ ├── nice_flor_s.h │ │ ├── phoenix_v2.c │ │ ├── phoenix_v2.h │ │ ├── pocsag.c │ │ ├── pocsag.h │ │ ├── power_smart.c │ │ ├── power_smart.h │ │ ├── princeton.c │ │ ├── princeton.h │ │ ├── princeton_for_testing.c │ │ ├── princeton_for_testing.h │ │ ├── protocol_items.c │ │ ├── protocol_items.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── scher_khan.c │ │ ├── scher_khan.h │ │ ├── secplus_v1.c │ │ ├── secplus_v1.h │ │ ├── secplus_v2.c │ │ ├── secplus_v2.h │ │ ├── somfy_keytis.c │ │ ├── somfy_keytis.h │ │ ├── somfy_telis.c │ │ ├── somfy_telis.h │ │ ├── star_line.c │ │ └── star_line.h │ ├── receiver.c │ ├── receiver.h │ ├── registry.c │ ├── registry.h │ ├── subghz_file_encoder_worker.c │ ├── subghz_file_encoder_worker.h │ ├── subghz_keystore.c │ ├── subghz_keystore.h │ ├── subghz_setting.c │ ├── subghz_setting.h │ ├── subghz_tx_rx_worker.c │ ├── subghz_tx_rx_worker.h │ ├── subghz_worker.c │ ├── subghz_worker.h │ ├── transmitter.c │ ├── transmitter.h │ └── types.h ├── toolbox │ ├── .gitignore │ ├── SConscript │ ├── api_lock.h │ ├── args.c │ ├── args.h │ ├── buffer_stream.c │ ├── buffer_stream.h │ ├── crc32_calc.c │ ├── crc32_calc.h │ ├── dir_walk.c │ ├── dir_walk.h │ ├── hex.c │ ├── hex.h │ ├── hmac_sha256.c │ ├── hmac_sha256.h │ ├── level_duration.h │ ├── m_cstr_dup.h │ ├── manchester_decoder.c │ ├── manchester_decoder.h │ ├── manchester_encoder.c │ ├── manchester_encoder.h │ ├── md5.c │ ├── md5.h │ ├── path.c │ ├── path.h │ ├── profiler.c │ ├── profiler.h │ ├── property.c │ ├── property.h │ ├── protocols │ │ ├── protocol.h │ │ ├── protocol_dict.c │ │ └── protocol_dict.h │ ├── pulse_joiner.c │ ├── pulse_joiner.h │ ├── pulse_protocols │ │ ├── pulse_glue.c │ │ └── pulse_glue.h │ ├── random_name.c │ ├── random_name.h │ ├── saved_struct.c │ ├── saved_struct.h │ ├── sha256.c │ ├── sha256.h │ ├── stream │ │ ├── buffered_file_stream.c │ │ ├── buffered_file_stream.h │ │ ├── file_stream.c │ │ ├── file_stream.h │ │ ├── stream.c │ │ ├── stream.h │ │ ├── stream_cache.c │ │ ├── stream_cache.h │ │ ├── stream_i.h │ │ ├── string_stream.c │ │ └── string_stream.h │ ├── tar │ │ ├── tar_archive.c │ │ └── tar_archive.h │ ├── value_index.c │ ├── value_index.h │ ├── varint.c │ ├── varint.h │ ├── version.c │ └── version.h ├── u8g2 │ ├── u8g2.h │ ├── u8g2_bitmap.c │ ├── u8g2_box.c │ ├── u8g2_buffer.c │ ├── u8g2_circle.c │ ├── u8g2_d_memory.c │ ├── u8g2_font.c │ ├── u8g2_fonts.c │ ├── u8g2_glue.c │ ├── u8g2_glue.h │ ├── u8g2_hvline.c │ ├── u8g2_intersection.c │ ├── u8g2_line.c │ ├── u8g2_ll_hvline.c │ ├── u8g2_setup.c │ ├── u8x8.h │ ├── u8x8_8x8.c │ ├── u8x8_byte.c │ ├── u8x8_cad.c │ ├── u8x8_display.c │ ├── u8x8_gpio.c │ └── u8x8_setup.c └── update_util │ ├── dfu_file.c │ ├── dfu_file.h │ ├── dfu_headers.h │ ├── lfs_backup.c │ ├── lfs_backup.h │ ├── resources │ ├── manifest.c │ └── manifest.h │ ├── update_manifest.c │ ├── update_manifest.h │ ├── update_operation.c │ └── update_operation.h ├── scripts ├── ReadMe.md ├── User │ ├── ReadMe.md │ ├── decode.py │ ├── encode.py │ ├── icondecode.py │ └── iconencode.py ├── amap_mariadb_insert.py ├── assets.py ├── bin2dfu.py ├── fbt │ ├── __init__.py │ ├── appmanifest.py │ ├── elfmanifest.py │ ├── sdk │ │ ├── __init__.py │ │ ├── cache.py │ │ └── collector.py │ ├── util.py │ └── version.py ├── fbt_tools │ ├── blackmagic.py │ ├── ccache.py │ ├── compilation_db.py │ ├── crosscc.py │ ├── fbt_apps.py │ ├── fbt_assets.py │ ├── fbt_debugopts.py │ ├── fbt_dist.py │ ├── fbt_extapps.py │ ├── fbt_help.py │ ├── fbt_sdk.py │ ├── fbt_tweaks.py │ ├── fbt_version.py │ ├── fwbin.py │ ├── gdb.py │ ├── jflash.py │ ├── objdump.py │ ├── openocd.py │ ├── python3.py │ ├── sconsmodular.py │ ├── sconsrecursiveglob.py │ └── strip.py ├── flash.py ├── flipper │ ├── __init__.py │ ├── app.py │ ├── assets │ │ ├── __init__.py │ │ ├── copro.py │ │ ├── coprobin.py │ │ ├── dolphin.py │ │ ├── icon.py │ │ ├── manifest.py │ │ ├── obdata.py │ │ └── templates │ │ │ ├── dolphin.c.tmpl │ │ │ └── dolphin.h.tmpl │ ├── cube.py │ ├── storage.py │ └── utils │ │ ├── __init__.py │ │ ├── cdc.py │ │ ├── fff.py │ │ ├── fstree.py │ │ └── templite.py ├── fwsize.py ├── get_env.py ├── guruguru.py ├── lint.py ├── meta.py ├── ob.data ├── ob.py ├── ob_custradio.data ├── otp.py ├── requirements.txt ├── runfap.py ├── sconsdist.py ├── selfupdate.py ├── serial_cli.py ├── slideshow.py ├── storage.py ├── testing │ ├── await_flipper.py │ └── units.py ├── toolchain │ ├── fbtenv.cmd │ ├── fbtenv.sh │ └── windows-toolchain-download.ps1 ├── update.py └── version.py ├── site_scons ├── cc.scons ├── commandline.scons ├── environ.scons ├── extapps.scons ├── fbt_extra │ └── util.py ├── firmwareopts.scons └── site_init.py ├── test_iso7816_helpers.c └── test_mrtd_helpers.c /.ci_files/anims_ofw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.ci_files/anims_ofw.txt -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.clang-format -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.drone.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @RogueMaster -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pvsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.pvsconfig -------------------------------------------------------------------------------- /.pvsoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.pvsoptions -------------------------------------------------------------------------------- /.vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/.gitignore -------------------------------------------------------------------------------- /.vscode/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/ReadMe.md -------------------------------------------------------------------------------- /.vscode/example/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/example/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/example/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/example/launch.json -------------------------------------------------------------------------------- /.vscode/example/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/example/settings.json -------------------------------------------------------------------------------- /.vscode/example/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/example/tasks.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/Brewfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/CODING_STYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GAMES_ONLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/GAMES_ONLY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/LICENSE -------------------------------------------------------------------------------- /MACOS_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/MACOS_GUIDE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/Makefile -------------------------------------------------------------------------------- /RM11301557-0.72.1-d9de018.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/RM11301557-0.72.1-d9de018.tgz -------------------------------------------------------------------------------- /RM11301557-0.72.1-d9de018.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/RM11301557-0.72.1-d9de018.zip -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/ReadMe.md -------------------------------------------------------------------------------- /RoadMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/RoadMap.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/SConstruct -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /applications/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/ReadMe.md -------------------------------------------------------------------------------- /applications/debug/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/debug/application.fam -------------------------------------------------------------------------------- /applications/debug/display_test/display_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /applications/examples/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/examples/application.fam -------------------------------------------------------------------------------- /applications/main/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/application.fam -------------------------------------------------------------------------------- /applications/main/archive/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/archive/archive.c -------------------------------------------------------------------------------- /applications/main/archive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/archive/archive.h -------------------------------------------------------------------------------- /applications/main/archive/archive_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/archive/archive_i.h -------------------------------------------------------------------------------- /applications/main/bad_usb/bad_usb_settings_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define BAD_USB_SETTINGS_FILE_NAME ".badusb.settings" 4 | -------------------------------------------------------------------------------- /applications/main/clock/ClockIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/clock/ClockIcon.png -------------------------------------------------------------------------------- /applications/main/clock/clock_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/clock/clock_app.c -------------------------------------------------------------------------------- /applications/main/gpio/gpioIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/gpio/gpioIcon.png -------------------------------------------------------------------------------- /applications/main/gpio/gpio_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/gpio/gpio_app.c -------------------------------------------------------------------------------- /applications/main/gpio/gpio_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/gpio/gpio_app.h -------------------------------------------------------------------------------- /applications/main/gpio/gpio_app_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/gpio/gpio_app_i.h -------------------------------------------------------------------------------- /applications/main/gpio/gpio_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/gpio/gpio_item.c -------------------------------------------------------------------------------- /applications/main/gpio/gpio_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/gpio/gpio_item.h -------------------------------------------------------------------------------- /applications/main/ibutton/iBIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/ibutton/iBIcon.png -------------------------------------------------------------------------------- /applications/main/ibutton/ibutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/ibutton/ibutton.c -------------------------------------------------------------------------------- /applications/main/ibutton/ibutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/ibutton/ibutton.h -------------------------------------------------------------------------------- /applications/main/ibutton/ibutton_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/ibutton/ibutton_i.h -------------------------------------------------------------------------------- /applications/main/infrared/infrared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/infrared/infrared.c -------------------------------------------------------------------------------- /applications/main/infrared/infrared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/infrared/infrared.h -------------------------------------------------------------------------------- /applications/main/lfrfid/125_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/lfrfid/125_10px.png -------------------------------------------------------------------------------- /applications/main/lfrfid/images/Round_loader_8x8/frame_rate: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /applications/main/lfrfid/lfrfid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/lfrfid/lfrfid.c -------------------------------------------------------------------------------- /applications/main/lfrfid/lfrfid_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/lfrfid/lfrfid_i.h -------------------------------------------------------------------------------- /applications/main/nfc/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/nfc/application.fam -------------------------------------------------------------------------------- /applications/main/nfc/nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/nfc/nfc.c -------------------------------------------------------------------------------- /applications/main/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/nfc/nfc.h -------------------------------------------------------------------------------- /applications/main/nfc/nfc_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/nfc/nfc_cli.c -------------------------------------------------------------------------------- /applications/main/nfc/nfc_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/nfc/nfc_i.h -------------------------------------------------------------------------------- /applications/main/subghz/subghz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/subghz/subghz.c -------------------------------------------------------------------------------- /applications/main/subghz/subghz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/subghz/subghz.h -------------------------------------------------------------------------------- /applications/main/subghz/subghz_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/subghz/subghz_cli.c -------------------------------------------------------------------------------- /applications/main/subghz/subghz_cli.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | void subghz_on_system_start(); 6 | -------------------------------------------------------------------------------- /applications/main/subghz/subghz_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/subghz/subghz_i.c -------------------------------------------------------------------------------- /applications/main/subghz/subghz_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/subghz/subghz_i.h -------------------------------------------------------------------------------- /applications/main/u2f/U2FIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/U2FIcon.png -------------------------------------------------------------------------------- /applications/main/u2f/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/application.fam -------------------------------------------------------------------------------- /applications/main/u2f/u2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f.c -------------------------------------------------------------------------------- /applications/main/u2f/u2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f.h -------------------------------------------------------------------------------- /applications/main/u2f/u2f_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_app.c -------------------------------------------------------------------------------- /applications/main/u2f/u2f_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_app.h -------------------------------------------------------------------------------- /applications/main/u2f/u2f_app_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_app_i.h -------------------------------------------------------------------------------- /applications/main/u2f/u2f_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_data.c -------------------------------------------------------------------------------- /applications/main/u2f/u2f_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_data.h -------------------------------------------------------------------------------- /applications/main/u2f/u2f_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_hid.c -------------------------------------------------------------------------------- /applications/main/u2f/u2f_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/main/u2f/u2f_hid.h -------------------------------------------------------------------------------- /applications/plugins/airmouse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/airmouse/LICENSE -------------------------------------------------------------------------------- /applications/plugins/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/application.fam -------------------------------------------------------------------------------- /applications/plugins/blackjack/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/blackjack/ui.c -------------------------------------------------------------------------------- /applications/plugins/blackjack/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/blackjack/ui.h -------------------------------------------------------------------------------- /applications/plugins/blackjack/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/blackjack/util.c -------------------------------------------------------------------------------- /applications/plugins/blackjack/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/blackjack/util.h -------------------------------------------------------------------------------- /applications/plugins/bpmtapper/bpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/bpmtapper/bpm.c -------------------------------------------------------------------------------- /applications/plugins/dap_link/gui/dap_gui.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | int32_t dap_gui_thread(void* arg); -------------------------------------------------------------------------------- /applications/plugins/dice/dice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/dice/dice.c -------------------------------------------------------------------------------- /applications/plugins/dice/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/dice/dice.png -------------------------------------------------------------------------------- /applications/plugins/dice2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/dice2/README.md -------------------------------------------------------------------------------- /applications/plugins/dice2/dice_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/dice2/dice_app.c -------------------------------------------------------------------------------- /applications/plugins/dice2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/dice2/icon.png -------------------------------------------------------------------------------- /applications/plugins/doom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/README.md -------------------------------------------------------------------------------- /applications/plugins/doom/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/constants.h -------------------------------------------------------------------------------- /applications/plugins/doom/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/display.h -------------------------------------------------------------------------------- /applications/plugins/doom/doom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/doom.c -------------------------------------------------------------------------------- /applications/plugins/doom/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/entities.c -------------------------------------------------------------------------------- /applications/plugins/doom/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/entities.h -------------------------------------------------------------------------------- /applications/plugins/doom/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/level.h -------------------------------------------------------------------------------- /applications/plugins/doom/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/sound.h -------------------------------------------------------------------------------- /applications/plugins/doom/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/types.c -------------------------------------------------------------------------------- /applications/plugins/doom/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/doom/types.h -------------------------------------------------------------------------------- /applications/plugins/flappy_bird/assets/bird/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /applications/plugins/flipper_i2ctools/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/plugins/game15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/game15/README.md -------------------------------------------------------------------------------- /applications/plugins/game15/game15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/game15/game15.c -------------------------------------------------------------------------------- /applications/plugins/game15/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/game15/sandbox.c -------------------------------------------------------------------------------- /applications/plugins/game15/sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/game15/sandbox.h -------------------------------------------------------------------------------- /applications/plugins/game2048/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/game2048/font.c -------------------------------------------------------------------------------- /applications/plugins/game2048/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/game2048/font.h -------------------------------------------------------------------------------- /applications/plugins/heap_defence_game/assets_images/HD_game_over_128x64/frame_rate: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /applications/plugins/heap_defence_game/assets_images/HD_person_block_left_10x20/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /applications/plugins/heap_defence_game/assets_images/HD_person_block_right_10x20/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /applications/plugins/heap_defence_game/assets_images/HD_person_left_10x20/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /applications/plugins/heap_defence_game/assets_images/HD_person_right_10x20/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /applications/plugins/heap_defence_game/assets_images/HD_start_128x64/frame_rate: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /applications/plugins/hid_app/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/hid_app/hid.c -------------------------------------------------------------------------------- /applications/plugins/hid_app/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/hid_app/hid.h -------------------------------------------------------------------------------- /applications/plugins/hid_app/views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/hid_app/views.h -------------------------------------------------------------------------------- /applications/plugins/ifttt/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/ifttt/icon.png -------------------------------------------------------------------------------- /applications/plugins/musictracker/icons/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/plugins/musictracker/zero_tracker.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/plugins/nrf24scan/addr1.txt: -------------------------------------------------------------------------------- 1 | Rate: 1 2 | Ch: 120 3 | P0: C8C8E5 4 | -------------------------------------------------------------------------------- /applications/plugins/paint/paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/paint/paint.c -------------------------------------------------------------------------------- /applications/plugins/passgen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/passgen/LICENSE -------------------------------------------------------------------------------- /applications/plugins/pomodoro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/pomodoro/LICENSE -------------------------------------------------------------------------------- /applications/plugins/sam/sam_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/sam/sam_app.cpp -------------------------------------------------------------------------------- /applications/plugins/sam/stm32_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/sam/stm32_sam.h -------------------------------------------------------------------------------- /applications/plugins/subbrute/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/subbrute/LICENSE -------------------------------------------------------------------------------- /applications/plugins/subbrute/images/Sub1ghz_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /applications/plugins/tama_p1/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/tama_p1/hal.c -------------------------------------------------------------------------------- /applications/plugins/tama_p1/tama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/tama_p1/tama.h -------------------------------------------------------------------------------- /applications/plugins/timelapse/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /applications/plugins/totp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/totp/LICENSE -------------------------------------------------------------------------------- /applications/plugins/totp/cli/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/totp/cli/cli.c -------------------------------------------------------------------------------- /applications/plugins/totp/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/totp/cli/cli.h -------------------------------------------------------------------------------- /applications/plugins/totp/totp_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/plugins/totp/totp_app.c -------------------------------------------------------------------------------- /applications/plugins/totp/types/common.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define LOGGING_TAG "TOTP APP" 4 | -------------------------------------------------------------------------------- /applications/plugins/trex_runner/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /cmake-build-*/ 3 | -------------------------------------------------------------------------------- /applications/plugins/usb_hid_autofire/.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /applications/plugins/usb_hid_autofire/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "0.3" 2 | -------------------------------------------------------------------------------- /applications/plugins/usb_midi/midi/config.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #define SYSEX_BUFFER_LEN 16 -------------------------------------------------------------------------------- /applications/services/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/application.fam -------------------------------------------------------------------------------- /applications/services/applications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/applications.h -------------------------------------------------------------------------------- /applications/services/bt/bt_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/bt/bt_cli.c -------------------------------------------------------------------------------- /applications/services/bt/bt_service/bt_keys_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define BT_KEYS_STORAGE_FILE_NAME ".bt.keys" 4 | -------------------------------------------------------------------------------- /applications/services/bt/bt_settings_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define BT_SETTINGS_FILE_NAME ".bt.settings" 4 | -------------------------------------------------------------------------------- /applications/services/cli/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/cli/cli.c -------------------------------------------------------------------------------- /applications/services/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/cli/cli.h -------------------------------------------------------------------------------- /applications/services/cli/cli_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/cli/cli_i.h -------------------------------------------------------------------------------- /applications/services/cli/cli_vcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/cli/cli_vcp.c -------------------------------------------------------------------------------- /applications/services/cli/cli_vcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/cli/cli_vcp.h -------------------------------------------------------------------------------- /applications/services/desktop/desktop_settings_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define DESKTOP_SETTINGS_FILE_NAME ".desktop.settings" 4 | -------------------------------------------------------------------------------- /applications/services/desktop/helpers/slideshow_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define SLIDESHOW_FILE_NAME ".slideshow" 4 | -------------------------------------------------------------------------------- /applications/services/dolphin/helpers/dolphin_state_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define DOLPHIN_STATE_FILE_NAME ".dolphin.state" 4 | -------------------------------------------------------------------------------- /applications/services/gui/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/canvas.c -------------------------------------------------------------------------------- /applications/services/gui/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/canvas.h -------------------------------------------------------------------------------- /applications/services/gui/canvas_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/canvas_i.h -------------------------------------------------------------------------------- /applications/services/gui/elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/elements.c -------------------------------------------------------------------------------- /applications/services/gui/elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/elements.h -------------------------------------------------------------------------------- /applications/services/gui/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/gui.c -------------------------------------------------------------------------------- /applications/services/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/gui.h -------------------------------------------------------------------------------- /applications/services/gui/gui_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/gui_i.h -------------------------------------------------------------------------------- /applications/services/gui/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/icon.c -------------------------------------------------------------------------------- /applications/services/gui/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/icon.h -------------------------------------------------------------------------------- /applications/services/gui/icon_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/icon_i.h -------------------------------------------------------------------------------- /applications/services/gui/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/view.c -------------------------------------------------------------------------------- /applications/services/gui/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/view.h -------------------------------------------------------------------------------- /applications/services/gui/view_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/view_i.h -------------------------------------------------------------------------------- /applications/services/gui/view_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/view_port.c -------------------------------------------------------------------------------- /applications/services/gui/view_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/gui/view_port.h -------------------------------------------------------------------------------- /applications/services/input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/input/input.c -------------------------------------------------------------------------------- /applications/services/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/input/input.h -------------------------------------------------------------------------------- /applications/services/input/input_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/input/input_i.h -------------------------------------------------------------------------------- /applications/services/loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/loader/loader.c -------------------------------------------------------------------------------- /applications/services/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/loader/loader.h -------------------------------------------------------------------------------- /applications/services/power/power_settings_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define POWER_SETTINGS_FILE_NAME ".power.settings" -------------------------------------------------------------------------------- /applications/services/rpc/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc.c -------------------------------------------------------------------------------- /applications/services/rpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc.h -------------------------------------------------------------------------------- /applications/services/rpc/rpc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_app.c -------------------------------------------------------------------------------- /applications/services/rpc/rpc_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_app.h -------------------------------------------------------------------------------- /applications/services/rpc/rpc_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_cli.c -------------------------------------------------------------------------------- /applications/services/rpc/rpc_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_debug.c -------------------------------------------------------------------------------- /applications/services/rpc/rpc_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_gpio.c -------------------------------------------------------------------------------- /applications/services/rpc/rpc_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_gui.c -------------------------------------------------------------------------------- /applications/services/rpc/rpc_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/services/rpc/rpc_i.h -------------------------------------------------------------------------------- /applications/settings/about/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/settings/about/about.c -------------------------------------------------------------------------------- /applications/settings/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/settings/application.fam -------------------------------------------------------------------------------- /applications/settings/power_settings_app/power_settings_filename.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define POWER_SETTINGS_FILE_NAME ".power.settings" -------------------------------------------------------------------------------- /applications/system/application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/system/application.fam -------------------------------------------------------------------------------- /applications/system/updater/updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/applications/system/updater/updater.c -------------------------------------------------------------------------------- /applications_user/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /applications_user/README.md: -------------------------------------------------------------------------------- 1 | Put your custom applications in this folder. -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/ReadMe.md -------------------------------------------------------------------------------- /assets/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/SConscript -------------------------------------------------------------------------------- /assets/dolphin/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/dolphin/ReadMe.md -------------------------------------------------------------------------------- /assets/dolphin/blocking/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/dolphin/blocking/manifest.txt -------------------------------------------------------------------------------- /assets/dolphin/external/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/dolphin/external/manifest.txt -------------------------------------------------------------------------------- /assets/dolphin/internal/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/dolphin/internal/manifest.txt -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /assets/icons/Archive/125_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/125_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/Apps_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/Apps_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/Nfc_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/Nfc_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/back_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/back_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/badusb_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/badusb_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/dir_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/dir_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/ibutt_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/ibutt_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/ir_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/ir_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/loading_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/loading_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/music_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/music_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/sub1_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/sub1_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/u2f_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/u2f_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/unknown_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/unknown_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/update_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Archive/update_10px.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Clock_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/BadUsb/Clock_18x18.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Error_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/BadUsb/Error_18x18.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Percent_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/BadUsb/Percent_10x14.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Smile_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/BadUsb/Smile_18x18.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/UsbTree_48x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/BadUsb/UsbTree_48x22.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonUp_7x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Common/ButtonUp_7x4.png -------------------------------------------------------------------------------- /assets/icons/Common/DFU_128x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Common/DFU_128x50.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_rate: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /assets/icons/Common/Round_loader_8x8/frame_rate: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /assets/icons/Common/Warning_30x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Common/Warning_30x23.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Down_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Down_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Mode_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Mode_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Mute_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Mute_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Power_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Power_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Swing_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Swing_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Timer_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Timer_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Up_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Infrared/Up_25x27.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/125khz_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Clock_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Debug_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/NFC_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/U2F_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/UniRFRemix_14/frame_rate: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/NFC/ArrowC_1_36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/NFC/ArrowC_1_36x36.png -------------------------------------------------------------------------------- /assets/icons/NFC/Keychain_39x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/NFC/Keychain_39x36.png -------------------------------------------------------------------------------- /assets/icons/NFC/NFC_manual_60x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/NFC/NFC_manual_60x50.png -------------------------------------------------------------------------------- /assets/icons/NFC/Restoring_38x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/NFC/Restoring_38x32.png -------------------------------------------------------------------------------- /assets/icons/NFC/Tap_reader_36x38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/NFC/Tap_reader_36x38.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_arrow_up_7x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/PIN/Pin_arrow_up_7x9.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_cell_13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/PIN/Pin_cell_13x13.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_pointer_5x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/PIN/Pin_pointer_5x3.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_star_7x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/PIN/Pin_star_7x7.png -------------------------------------------------------------------------------- /assets/icons/Passport/G0ku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Passport/G0ku.png -------------------------------------------------------------------------------- /assets/icons/Passport/g0ku_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Passport/g0ku_1.png -------------------------------------------------------------------------------- /assets/icons/Passport/g0ku_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Passport/g0ku_2.png -------------------------------------------------------------------------------- /assets/icons/Passport/g0ku_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Passport/g0ku_3.png -------------------------------------------------------------------------------- /assets/icons/Power/Battery_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Power/Battery_16x16.png -------------------------------------------------------------------------------- /assets/icons/Power/Health_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Power/Health_16x16.png -------------------------------------------------------------------------------- /assets/icons/Power/Voltage_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/Power/Voltage_16x16.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Alert_9x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/StatusBar/Alert_9x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Lock_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/StatusBar/Lock_8x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Dynamic_9x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/Dynamic_9x7.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Lock_7x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/Lock_7x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/MHz_25x11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/MHz_25x11.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Quest_7x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/Quest_7x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Raw_9x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/Raw_9x7.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Static_9x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/Static_9x7.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Unlock_7x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/SubGhz/Unlock_7x8.png -------------------------------------------------------------------------------- /assets/icons/U2F/Auth_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/U2F/Auth_62x31.png -------------------------------------------------------------------------------- /assets/icons/U2F/Connect_me_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/U2F/Connect_me_62x31.png -------------------------------------------------------------------------------- /assets/icons/U2F/Connected_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/U2F/Connected_62x31.png -------------------------------------------------------------------------------- /assets/icons/U2F/Drive_112x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/U2F/Drive_112x35.png -------------------------------------------------------------------------------- /assets/icons/U2F/Error_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/icons/U2F/Error_62x31.png -------------------------------------------------------------------------------- /assets/resources/badusb/.badusb.settings: -------------------------------------------------------------------------------- 1 | /any/badusb/layouts/en-US.kl 2 | -------------------------------------------------------------------------------- /assets/resources/dolphin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/resources/dolphin/README.md -------------------------------------------------------------------------------- /assets/resources/dolphin/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/resources/dolphin/manifest.txt -------------------------------------------------------------------------------- /assets/resources/nfc/RickRoll.nfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/resources/nfc/RickRoll.nfc -------------------------------------------------------------------------------- /assets/resources/nfc/assets/aid.nfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/resources/nfc/assets/aid.nfc -------------------------------------------------------------------------------- /assets/resources/subghz/Misc/Go1.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/resources/subghz/Misc/Go1.sub -------------------------------------------------------------------------------- /assets/resources/u2f/assets/cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/resources/u2f/assets/cert.der -------------------------------------------------------------------------------- /assets/unit_tests/subghz/ansonic.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/ansonic.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/bett.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/bett.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/bett_raw.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/bett_raw.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/came.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/came.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/clemsa.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/clemsa.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/holtek.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/holtek.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/linear.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/linear.sub -------------------------------------------------------------------------------- /assets/unit_tests/subghz/pocsag.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/assets/unit_tests/subghz/pocsag.sub -------------------------------------------------------------------------------- /brew-cask/gcc-arm-embedded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/brew-cask/gcc-arm-embedded.rb -------------------------------------------------------------------------------- /debug/FreeRTOS/FreeRTOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/FreeRTOS/FreeRTOS.py -------------------------------------------------------------------------------- /debug/FreeRTOS/FreeRTOSgdb/List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/FreeRTOS/FreeRTOSgdb/List.py -------------------------------------------------------------------------------- /debug/FreeRTOS/FreeRTOSgdb/Task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/FreeRTOS/FreeRTOSgdb/Task.py -------------------------------------------------------------------------------- /debug/FreeRTOS/FreeRTOSgdb/Types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/FreeRTOS/FreeRTOSgdb/Types.py -------------------------------------------------------------------------------- /debug/FreeRTOS/FreeRTOSgdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug/FreeRTOS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/FreeRTOS/LICENSE -------------------------------------------------------------------------------- /debug/FreeRTOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/FreeRTOS/README.md -------------------------------------------------------------------------------- /debug/PyCortexMDebug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/PyCortexMDebug/LICENSE -------------------------------------------------------------------------------- /debug/PyCortexMDebug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/PyCortexMDebug/README.md -------------------------------------------------------------------------------- /debug/PyCortexMDebug/cmdebug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug/PyCortexMDebug/cmdebug/svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/PyCortexMDebug/cmdebug/svd.py -------------------------------------------------------------------------------- /debug/PyCortexMDebug/cmdebug/x2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/PyCortexMDebug/cmdebug/x2d.py -------------------------------------------------------------------------------- /debug/STM32WB55_CM4.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/STM32WB55_CM4.svd -------------------------------------------------------------------------------- /debug/flipperapps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/flipperapps.py -------------------------------------------------------------------------------- /debug/fw.jflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/fw.jflash -------------------------------------------------------------------------------- /debug/stm32wbx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/debug/stm32wbx.cfg -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- 1 | /html 2 | /latex -------------------------------------------------------------------------------- /documentation/AppManifests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/AppManifests.md -------------------------------------------------------------------------------- /documentation/AppsOnSDCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/AppsOnSDCard.md -------------------------------------------------------------------------------- /documentation/BarcodeGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/BarcodeGenerator.md -------------------------------------------------------------------------------- /documentation/BluetoothRemote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/BluetoothRemote.md -------------------------------------------------------------------------------- /documentation/CustomFlipperName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/CustomFlipperName.md -------------------------------------------------------------------------------- /documentation/DangerousSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/DangerousSettings.md -------------------------------------------------------------------------------- /documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/Doxyfile -------------------------------------------------------------------------------- /documentation/HowToBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/HowToBuild.md -------------------------------------------------------------------------------- /documentation/HowToInstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/HowToInstall.md -------------------------------------------------------------------------------- /documentation/KeyCombo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/KeyCombo.md -------------------------------------------------------------------------------- /documentation/MultiConverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/MultiConverter.md -------------------------------------------------------------------------------- /documentation/NRF24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/NRF24.md -------------------------------------------------------------------------------- /documentation/OTA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/OTA.md -------------------------------------------------------------------------------- /documentation/SentrySafe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/SentrySafe.md -------------------------------------------------------------------------------- /documentation/SubGHzRemotePlugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/SubGHzRemotePlugin.md -------------------------------------------------------------------------------- /documentation/SubGHzSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/SubGHzSettings.md -------------------------------------------------------------------------------- /documentation/UnitTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/UnitTests.md -------------------------------------------------------------------------------- /documentation/UniversalRemotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/UniversalRemotes.md -------------------------------------------------------------------------------- /documentation/fbt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/documentation/fbt.md -------------------------------------------------------------------------------- /fbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/fbt -------------------------------------------------------------------------------- /fbt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/fbt.cmd -------------------------------------------------------------------------------- /fbt_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/fbt_options.py -------------------------------------------------------------------------------- /firmware.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware.scons -------------------------------------------------------------------------------- /firmware/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/ReadMe.md -------------------------------------------------------------------------------- /firmware/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/SConscript -------------------------------------------------------------------------------- /firmware/targets/f7/Inc/alt_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/Inc/alt_boot.h -------------------------------------------------------------------------------- /firmware/targets/f7/Inc/stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/Inc/stm32.h -------------------------------------------------------------------------------- /firmware/targets/f7/Src/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/Src/dfu.c -------------------------------------------------------------------------------- /firmware/targets/f7/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/Src/main.c -------------------------------------------------------------------------------- /firmware/targets/f7/Src/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/Src/update.c -------------------------------------------------------------------------------- /firmware/targets/f7/api_symbols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/api_symbols.csv -------------------------------------------------------------------------------- /firmware/targets/f7/ble_glue/gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/ble_glue/gap.c -------------------------------------------------------------------------------- /firmware/targets/f7/ble_glue/gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/ble_glue/gap.h -------------------------------------------------------------------------------- /firmware/targets/f7/ble_glue/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/ble_glue/osal.h -------------------------------------------------------------------------------- /firmware/targets/f7/fatfs/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/fatfs/fatfs.c -------------------------------------------------------------------------------- /firmware/targets/f7/fatfs/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/fatfs/fatfs.h -------------------------------------------------------------------------------- /firmware/targets/f7/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/fatfs/ffconf.h -------------------------------------------------------------------------------- /firmware/targets/f7/fatfs/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/firmware/targets/f7/fatfs/syscall.c -------------------------------------------------------------------------------- /furi/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/SConscript -------------------------------------------------------------------------------- /furi/core/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/base.h -------------------------------------------------------------------------------- /furi/core/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/check.c -------------------------------------------------------------------------------- /furi/core/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/check.h -------------------------------------------------------------------------------- /furi/core/common_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/common_defines.h -------------------------------------------------------------------------------- /furi/core/core_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/core_defines.h -------------------------------------------------------------------------------- /furi/core/dangerous_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/dangerous_defines.h -------------------------------------------------------------------------------- /furi/core/event_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/event_flag.c -------------------------------------------------------------------------------- /furi/core/event_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/event_flag.h -------------------------------------------------------------------------------- /furi/core/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/kernel.c -------------------------------------------------------------------------------- /furi/core/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/kernel.h -------------------------------------------------------------------------------- /furi/core/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/log.c -------------------------------------------------------------------------------- /furi/core/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/log.h -------------------------------------------------------------------------------- /furi/core/memmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/memmgr.c -------------------------------------------------------------------------------- /furi/core/memmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/memmgr.h -------------------------------------------------------------------------------- /furi/core/memmgr_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/memmgr_heap.c -------------------------------------------------------------------------------- /furi/core/memmgr_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/memmgr_heap.h -------------------------------------------------------------------------------- /furi/core/message_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/message_queue.c -------------------------------------------------------------------------------- /furi/core/message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/message_queue.h -------------------------------------------------------------------------------- /furi/core/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/mutex.c -------------------------------------------------------------------------------- /furi/core/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/mutex.h -------------------------------------------------------------------------------- /furi/core/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/pubsub.c -------------------------------------------------------------------------------- /furi/core/pubsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/pubsub.h -------------------------------------------------------------------------------- /furi/core/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/record.c -------------------------------------------------------------------------------- /furi/core/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/record.h -------------------------------------------------------------------------------- /furi/core/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/semaphore.c -------------------------------------------------------------------------------- /furi/core/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/semaphore.h -------------------------------------------------------------------------------- /furi/core/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/stream_buffer.c -------------------------------------------------------------------------------- /furi/core/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/stream_buffer.h -------------------------------------------------------------------------------- /furi/core/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/string.c -------------------------------------------------------------------------------- /furi/core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/string.h -------------------------------------------------------------------------------- /furi/core/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/thread.c -------------------------------------------------------------------------------- /furi/core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/thread.h -------------------------------------------------------------------------------- /furi/core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/timer.c -------------------------------------------------------------------------------- /furi/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/timer.h -------------------------------------------------------------------------------- /furi/core/valuemutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/valuemutex.c -------------------------------------------------------------------------------- /furi/core/valuemutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/core/valuemutex.h -------------------------------------------------------------------------------- /furi/flipper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/flipper.c -------------------------------------------------------------------------------- /furi/flipper.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void flipper_init(); 4 | -------------------------------------------------------------------------------- /furi/furi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/furi.c -------------------------------------------------------------------------------- /furi/furi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/furi/furi.h -------------------------------------------------------------------------------- /lib/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ReadMe.md -------------------------------------------------------------------------------- /lib/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/SConscript -------------------------------------------------------------------------------- /lib/ST25RFAL002/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/SConscript -------------------------------------------------------------------------------- /lib/ST25RFAL002/doc/rfal.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/doc/rfal.chm -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_chip.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_crc.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_dpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_dpo.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_nfc.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_nfca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_nfca.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_nfcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_nfcb.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_nfcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_nfcf.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_nfcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_nfcv.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_rf.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_t1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_t1t.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_t2t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_t2t.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/include/rfal_t4t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/include/rfal_t4t.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/platform.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/platform.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_crc.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_dpo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_dpo.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_nfc.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_nfca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_nfca.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_nfcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_nfcb.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_nfcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_nfcf.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_nfcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_nfcv.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_t1t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_t1t.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_t2t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_t2t.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/source/rfal_t4t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/source/rfal_t4t.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/st_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/st_errno.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/timer.c -------------------------------------------------------------------------------- /lib/ST25RFAL002/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/timer.h -------------------------------------------------------------------------------- /lib/ST25RFAL002/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/ST25RFAL002/utils.h -------------------------------------------------------------------------------- /lib/STM32CubeWB.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/STM32CubeWB.scons -------------------------------------------------------------------------------- /lib/appframe.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/appframe.scons -------------------------------------------------------------------------------- /lib/digital_signal/digital_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/digital_signal/digital_signal.c -------------------------------------------------------------------------------- /lib/digital_signal/digital_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/digital_signal/digital_signal.h -------------------------------------------------------------------------------- /lib/drivers/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/SConscript -------------------------------------------------------------------------------- /lib/drivers/bq25896.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/bq25896.c -------------------------------------------------------------------------------- /lib/drivers/bq25896.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/bq25896.h -------------------------------------------------------------------------------- /lib/drivers/bq25896_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/bq25896_reg.h -------------------------------------------------------------------------------- /lib/drivers/bq27220.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/bq27220.c -------------------------------------------------------------------------------- /lib/drivers/bq27220.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/bq27220.h -------------------------------------------------------------------------------- /lib/drivers/bq27220_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/bq27220_reg.h -------------------------------------------------------------------------------- /lib/drivers/cc1101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/cc1101.c -------------------------------------------------------------------------------- /lib/drivers/cc1101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/cc1101.h -------------------------------------------------------------------------------- /lib/drivers/cc1101_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/cc1101_regs.h -------------------------------------------------------------------------------- /lib/drivers/lp5562.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/lp5562.c -------------------------------------------------------------------------------- /lib/drivers/lp5562.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/lp5562.h -------------------------------------------------------------------------------- /lib/drivers/lp5562_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/drivers/lp5562_reg.h -------------------------------------------------------------------------------- /lib/fatfs/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/SConscript -------------------------------------------------------------------------------- /lib/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/diskio.c -------------------------------------------------------------------------------- /lib/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/diskio.h -------------------------------------------------------------------------------- /lib/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/ff.c -------------------------------------------------------------------------------- /lib/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/ff.h -------------------------------------------------------------------------------- /lib/fatfs/ff_gen_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/ff_gen_drv.c -------------------------------------------------------------------------------- /lib/fatfs/ff_gen_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/ff_gen_drv.h -------------------------------------------------------------------------------- /lib/fatfs/ffconf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/ffconf_template.h -------------------------------------------------------------------------------- /lib/fatfs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/integer.h -------------------------------------------------------------------------------- /lib/fatfs/option/cc932.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/option/cc932.c -------------------------------------------------------------------------------- /lib/fatfs/option/cc936.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/option/cc936.c -------------------------------------------------------------------------------- /lib/fatfs/option/cc949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/option/cc949.c -------------------------------------------------------------------------------- /lib/fatfs/option/cc950.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/option/cc950.c -------------------------------------------------------------------------------- /lib/fatfs/option/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/option/ccsbcs.c -------------------------------------------------------------------------------- /lib/fatfs/option/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fatfs/option/unicode.c -------------------------------------------------------------------------------- /lib/flipper_application/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/flipper_application/SConscript -------------------------------------------------------------------------------- /lib/flipper_application/elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/flipper_application/elf/elf.h -------------------------------------------------------------------------------- /lib/flipper_format/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/flipper_format/SConscript -------------------------------------------------------------------------------- /lib/flipper_format/flipper_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/flipper_format/flipper_format.c -------------------------------------------------------------------------------- /lib/flipper_format/flipper_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/flipper_format/flipper_format.h -------------------------------------------------------------------------------- /lib/fnv1a-hash/fnv1a-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fnv1a-hash/fnv1a-hash.c -------------------------------------------------------------------------------- /lib/fnv1a-hash/fnv1a-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/fnv1a-hash/fnv1a-hash.h -------------------------------------------------------------------------------- /lib/freertos.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/freertos.scons -------------------------------------------------------------------------------- /lib/heatshrink/heatshrink_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/heatshrink/heatshrink_common.h -------------------------------------------------------------------------------- /lib/heatshrink/heatshrink_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/heatshrink/heatshrink_config.h -------------------------------------------------------------------------------- /lib/heatshrink/heatshrink_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/heatshrink/heatshrink_decoder.c -------------------------------------------------------------------------------- /lib/heatshrink/heatshrink_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/heatshrink/heatshrink_decoder.h -------------------------------------------------------------------------------- /lib/heatshrink/heatshrink_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/heatshrink/heatshrink_encoder.c -------------------------------------------------------------------------------- /lib/heatshrink/heatshrink_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/heatshrink/heatshrink_encoder.h -------------------------------------------------------------------------------- /lib/infrared/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/infrared/SConscript -------------------------------------------------------------------------------- /lib/lfrfid/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/SConscript -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_dict_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_dict_file.c -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_dict_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_dict_file.h -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_raw_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_raw_file.c -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_raw_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_raw_file.h -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_raw_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_raw_worker.c -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_raw_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_raw_worker.h -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_worker.c -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_worker.h -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_worker_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_worker_i.h -------------------------------------------------------------------------------- /lib/lfrfid/lfrfid_worker_modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/lfrfid_worker_modes.c -------------------------------------------------------------------------------- /lib/lfrfid/tools/bit_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/bit_lib.c -------------------------------------------------------------------------------- /lib/lfrfid/tools/bit_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/bit_lib.h -------------------------------------------------------------------------------- /lib/lfrfid/tools/fsk_demod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/fsk_demod.c -------------------------------------------------------------------------------- /lib/lfrfid/tools/fsk_demod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/fsk_demod.h -------------------------------------------------------------------------------- /lib/lfrfid/tools/fsk_ocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/fsk_ocs.c -------------------------------------------------------------------------------- /lib/lfrfid/tools/fsk_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/fsk_osc.h -------------------------------------------------------------------------------- /lib/lfrfid/tools/t5577.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/t5577.c -------------------------------------------------------------------------------- /lib/lfrfid/tools/t5577.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/t5577.h -------------------------------------------------------------------------------- /lib/lfrfid/tools/varint_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/varint_pair.c -------------------------------------------------------------------------------- /lib/lfrfid/tools/varint_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfrfid/tools/varint_pair.h -------------------------------------------------------------------------------- /lib/lfs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/lfs_config.h -------------------------------------------------------------------------------- /lib/libusb_stm32.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/libusb_stm32.scons -------------------------------------------------------------------------------- /lib/littlefs.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/littlefs.scons -------------------------------------------------------------------------------- /lib/mbedtls.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/mbedtls.scons -------------------------------------------------------------------------------- /lib/micro-ecc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/LICENSE.txt -------------------------------------------------------------------------------- /lib/micro-ecc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/README.md -------------------------------------------------------------------------------- /lib/micro-ecc/asm_arm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/asm_arm.inc -------------------------------------------------------------------------------- /lib/micro-ecc/curve-specific.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/curve-specific.inc -------------------------------------------------------------------------------- /lib/micro-ecc/platform-specific.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/platform-specific.inc -------------------------------------------------------------------------------- /lib/micro-ecc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/types.h -------------------------------------------------------------------------------- /lib/micro-ecc/uECC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/uECC.c -------------------------------------------------------------------------------- /lib/micro-ecc/uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/uECC.h -------------------------------------------------------------------------------- /lib/micro-ecc/uECC_vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/micro-ecc/uECC_vli.h -------------------------------------------------------------------------------- /lib/microtar.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/microtar.scons -------------------------------------------------------------------------------- /lib/misc.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/misc.scons -------------------------------------------------------------------------------- /lib/nfc/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/SConscript -------------------------------------------------------------------------------- /lib/nfc/helpers/iso7816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/iso7816.c -------------------------------------------------------------------------------- /lib/nfc/helpers/iso7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/iso7816.h -------------------------------------------------------------------------------- /lib/nfc/helpers/mf_classic_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/mf_classic_dict.c -------------------------------------------------------------------------------- /lib/nfc/helpers/mf_classic_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/mf_classic_dict.h -------------------------------------------------------------------------------- /lib/nfc/helpers/mfkey32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/mfkey32.c -------------------------------------------------------------------------------- /lib/nfc/helpers/mfkey32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/mfkey32.h -------------------------------------------------------------------------------- /lib/nfc/helpers/mrtd_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/mrtd_helpers.c -------------------------------------------------------------------------------- /lib/nfc/helpers/mrtd_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/mrtd_helpers.h -------------------------------------------------------------------------------- /lib/nfc/helpers/nfc_debug_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/nfc_debug_log.c -------------------------------------------------------------------------------- /lib/nfc/helpers/nfc_debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/nfc_debug_log.h -------------------------------------------------------------------------------- /lib/nfc/helpers/nfc_debug_pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/nfc_debug_pcap.c -------------------------------------------------------------------------------- /lib/nfc/helpers/nfc_debug_pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/nfc_debug_pcap.h -------------------------------------------------------------------------------- /lib/nfc/helpers/reader_analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/reader_analyzer.c -------------------------------------------------------------------------------- /lib/nfc/helpers/reader_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/helpers/reader_analyzer.h -------------------------------------------------------------------------------- /lib/nfc/nfc_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_device.c -------------------------------------------------------------------------------- /lib/nfc/nfc_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_device.h -------------------------------------------------------------------------------- /lib/nfc/nfc_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_types.c -------------------------------------------------------------------------------- /lib/nfc/nfc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_types.h -------------------------------------------------------------------------------- /lib/nfc/nfc_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_worker.c -------------------------------------------------------------------------------- /lib/nfc/nfc_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_worker.h -------------------------------------------------------------------------------- /lib/nfc/nfc_worker_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/nfc_worker_i.h -------------------------------------------------------------------------------- /lib/nfc/parsers/all_in_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/all_in_one.c -------------------------------------------------------------------------------- /lib/nfc/parsers/all_in_one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/all_in_one.h -------------------------------------------------------------------------------- /lib/nfc/parsers/plantain_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/plantain_parser.c -------------------------------------------------------------------------------- /lib/nfc/parsers/plantain_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/plantain_parser.h -------------------------------------------------------------------------------- /lib/nfc/parsers/troika_4k_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/troika_4k_parser.c -------------------------------------------------------------------------------- /lib/nfc/parsers/troika_4k_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/troika_4k_parser.h -------------------------------------------------------------------------------- /lib/nfc/parsers/troika_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/troika_parser.c -------------------------------------------------------------------------------- /lib/nfc/parsers/troika_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/troika_parser.h -------------------------------------------------------------------------------- /lib/nfc/parsers/two_cities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/two_cities.c -------------------------------------------------------------------------------- /lib/nfc/parsers/two_cities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/parsers/two_cities.h -------------------------------------------------------------------------------- /lib/nfc/protocols/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/crypto1.c -------------------------------------------------------------------------------- /lib/nfc/protocols/crypto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/crypto1.h -------------------------------------------------------------------------------- /lib/nfc/protocols/emv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/emv.c -------------------------------------------------------------------------------- /lib/nfc/protocols/emv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/emv.h -------------------------------------------------------------------------------- /lib/nfc/protocols/mifare_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mifare_classic.c -------------------------------------------------------------------------------- /lib/nfc/protocols/mifare_classic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mifare_classic.h -------------------------------------------------------------------------------- /lib/nfc/protocols/mifare_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mifare_common.c -------------------------------------------------------------------------------- /lib/nfc/protocols/mifare_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mifare_common.h -------------------------------------------------------------------------------- /lib/nfc/protocols/mifare_desfire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mifare_desfire.c -------------------------------------------------------------------------------- /lib/nfc/protocols/mifare_desfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mifare_desfire.h -------------------------------------------------------------------------------- /lib/nfc/protocols/mrtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mrtd.c -------------------------------------------------------------------------------- /lib/nfc/protocols/mrtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/mrtd.h -------------------------------------------------------------------------------- /lib/nfc/protocols/nfc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfc_util.c -------------------------------------------------------------------------------- /lib/nfc/protocols/nfc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfc_util.h -------------------------------------------------------------------------------- /lib/nfc/protocols/nfca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfca.c -------------------------------------------------------------------------------- /lib/nfc/protocols/nfca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfca.h -------------------------------------------------------------------------------- /lib/nfc/protocols/nfca_trans_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfca_trans_rx.c -------------------------------------------------------------------------------- /lib/nfc/protocols/nfca_trans_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfca_trans_rx.h -------------------------------------------------------------------------------- /lib/nfc/protocols/nfcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfcv.c -------------------------------------------------------------------------------- /lib/nfc/protocols/nfcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/nfcv.h -------------------------------------------------------------------------------- /lib/nfc/protocols/slix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/slix.c -------------------------------------------------------------------------------- /lib/nfc/protocols/slix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/nfc/protocols/slix.h -------------------------------------------------------------------------------- /lib/one_wire/ibutton/ibutton_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/ibutton/ibutton_key.c -------------------------------------------------------------------------------- /lib/one_wire/ibutton/ibutton_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/ibutton/ibutton_key.h -------------------------------------------------------------------------------- /lib/one_wire/maxim_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/maxim_crc.c -------------------------------------------------------------------------------- /lib/one_wire/maxim_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/maxim_crc.h -------------------------------------------------------------------------------- /lib/one_wire/one_wire_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_device.c -------------------------------------------------------------------------------- /lib/one_wire/one_wire_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_device.h -------------------------------------------------------------------------------- /lib/one_wire/one_wire_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_host.c -------------------------------------------------------------------------------- /lib/one_wire/one_wire_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_host.h -------------------------------------------------------------------------------- /lib/one_wire/one_wire_host_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_host_timing.h -------------------------------------------------------------------------------- /lib/one_wire/one_wire_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_slave.c -------------------------------------------------------------------------------- /lib/one_wire/one_wire_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_slave.h -------------------------------------------------------------------------------- /lib/one_wire/one_wire_slave_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/one_wire/one_wire_slave_i.h -------------------------------------------------------------------------------- /lib/print/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/print/SConscript -------------------------------------------------------------------------------- /lib/print/printf_tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/print/printf_tiny.c -------------------------------------------------------------------------------- /lib/print/printf_tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/print/printf_tiny.h -------------------------------------------------------------------------------- /lib/print/wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/print/wrappers.c -------------------------------------------------------------------------------- /lib/print/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/print/wrappers.h -------------------------------------------------------------------------------- /lib/pulse_reader/pulse_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/pulse_reader/pulse_reader.c -------------------------------------------------------------------------------- /lib/pulse_reader/pulse_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/pulse_reader/pulse_reader.h -------------------------------------------------------------------------------- /lib/qrcode/qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/qrcode/qrcode.c -------------------------------------------------------------------------------- /lib/qrcode/qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/qrcode/qrcode.h -------------------------------------------------------------------------------- /lib/subghz/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/SConscript -------------------------------------------------------------------------------- /lib/subghz/blocks/const.c: -------------------------------------------------------------------------------- 1 | #include "const.h" 2 | -------------------------------------------------------------------------------- /lib/subghz/blocks/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/const.h -------------------------------------------------------------------------------- /lib/subghz/blocks/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/decoder.c -------------------------------------------------------------------------------- /lib/subghz/blocks/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/decoder.h -------------------------------------------------------------------------------- /lib/subghz/blocks/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/encoder.c -------------------------------------------------------------------------------- /lib/subghz/blocks/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/encoder.h -------------------------------------------------------------------------------- /lib/subghz/blocks/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/generic.c -------------------------------------------------------------------------------- /lib/subghz/blocks/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/generic.h -------------------------------------------------------------------------------- /lib/subghz/blocks/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/math.c -------------------------------------------------------------------------------- /lib/subghz/blocks/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/blocks/math.h -------------------------------------------------------------------------------- /lib/subghz/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/environment.c -------------------------------------------------------------------------------- /lib/subghz/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/environment.h -------------------------------------------------------------------------------- /lib/subghz/protocols/ansonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/ansonic.c -------------------------------------------------------------------------------- /lib/subghz/protocols/ansonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/ansonic.h -------------------------------------------------------------------------------- /lib/subghz/protocols/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/base.c -------------------------------------------------------------------------------- /lib/subghz/protocols/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/base.h -------------------------------------------------------------------------------- /lib/subghz/protocols/bett.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/bett.c -------------------------------------------------------------------------------- /lib/subghz/protocols/bett.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/bett.h -------------------------------------------------------------------------------- /lib/subghz/protocols/came.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/came.c -------------------------------------------------------------------------------- /lib/subghz/protocols/came.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/came.h -------------------------------------------------------------------------------- /lib/subghz/protocols/came_atomo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/came_atomo.c -------------------------------------------------------------------------------- /lib/subghz/protocols/came_atomo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/came_atomo.h -------------------------------------------------------------------------------- /lib/subghz/protocols/came_twee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/came_twee.c -------------------------------------------------------------------------------- /lib/subghz/protocols/came_twee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/came_twee.h -------------------------------------------------------------------------------- /lib/subghz/protocols/clemsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/clemsa.c -------------------------------------------------------------------------------- /lib/subghz/protocols/clemsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/clemsa.h -------------------------------------------------------------------------------- /lib/subghz/protocols/doitrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/doitrand.c -------------------------------------------------------------------------------- /lib/subghz/protocols/doitrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/doitrand.h -------------------------------------------------------------------------------- /lib/subghz/protocols/faac_slh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/faac_slh.c -------------------------------------------------------------------------------- /lib/subghz/protocols/faac_slh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/faac_slh.h -------------------------------------------------------------------------------- /lib/subghz/protocols/gate_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/gate_tx.c -------------------------------------------------------------------------------- /lib/subghz/protocols/gate_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/gate_tx.h -------------------------------------------------------------------------------- /lib/subghz/protocols/holtek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/holtek.c -------------------------------------------------------------------------------- /lib/subghz/protocols/holtek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/holtek.h -------------------------------------------------------------------------------- /lib/subghz/protocols/hormann.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/hormann.c -------------------------------------------------------------------------------- /lib/subghz/protocols/hormann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/hormann.h -------------------------------------------------------------------------------- /lib/subghz/protocols/ido.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/ido.c -------------------------------------------------------------------------------- /lib/subghz/protocols/ido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/ido.h -------------------------------------------------------------------------------- /lib/subghz/protocols/keeloq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/keeloq.c -------------------------------------------------------------------------------- /lib/subghz/protocols/keeloq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/keeloq.h -------------------------------------------------------------------------------- /lib/subghz/protocols/kia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/kia.c -------------------------------------------------------------------------------- /lib/subghz/protocols/kia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/kia.h -------------------------------------------------------------------------------- /lib/subghz/protocols/linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/linear.c -------------------------------------------------------------------------------- /lib/subghz/protocols/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/linear.h -------------------------------------------------------------------------------- /lib/subghz/protocols/magellan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/magellan.c -------------------------------------------------------------------------------- /lib/subghz/protocols/magellan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/magellan.h -------------------------------------------------------------------------------- /lib/subghz/protocols/marantec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/marantec.c -------------------------------------------------------------------------------- /lib/subghz/protocols/marantec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/marantec.h -------------------------------------------------------------------------------- /lib/subghz/protocols/megacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/megacode.c -------------------------------------------------------------------------------- /lib/subghz/protocols/megacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/megacode.h -------------------------------------------------------------------------------- /lib/subghz/protocols/nero_radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nero_radio.c -------------------------------------------------------------------------------- /lib/subghz/protocols/nero_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nero_radio.h -------------------------------------------------------------------------------- /lib/subghz/protocols/nero_sketch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nero_sketch.c -------------------------------------------------------------------------------- /lib/subghz/protocols/nero_sketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nero_sketch.h -------------------------------------------------------------------------------- /lib/subghz/protocols/nice_flo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nice_flo.c -------------------------------------------------------------------------------- /lib/subghz/protocols/nice_flo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nice_flo.h -------------------------------------------------------------------------------- /lib/subghz/protocols/nice_flor_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nice_flor_s.c -------------------------------------------------------------------------------- /lib/subghz/protocols/nice_flor_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/nice_flor_s.h -------------------------------------------------------------------------------- /lib/subghz/protocols/phoenix_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/phoenix_v2.c -------------------------------------------------------------------------------- /lib/subghz/protocols/phoenix_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/phoenix_v2.h -------------------------------------------------------------------------------- /lib/subghz/protocols/pocsag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/pocsag.c -------------------------------------------------------------------------------- /lib/subghz/protocols/pocsag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/pocsag.h -------------------------------------------------------------------------------- /lib/subghz/protocols/power_smart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/power_smart.c -------------------------------------------------------------------------------- /lib/subghz/protocols/power_smart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/power_smart.h -------------------------------------------------------------------------------- /lib/subghz/protocols/princeton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/princeton.c -------------------------------------------------------------------------------- /lib/subghz/protocols/princeton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/princeton.h -------------------------------------------------------------------------------- /lib/subghz/protocols/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/raw.c -------------------------------------------------------------------------------- /lib/subghz/protocols/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/raw.h -------------------------------------------------------------------------------- /lib/subghz/protocols/scher_khan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/scher_khan.c -------------------------------------------------------------------------------- /lib/subghz/protocols/scher_khan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/scher_khan.h -------------------------------------------------------------------------------- /lib/subghz/protocols/secplus_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/secplus_v1.c -------------------------------------------------------------------------------- /lib/subghz/protocols/secplus_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/secplus_v1.h -------------------------------------------------------------------------------- /lib/subghz/protocols/secplus_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/secplus_v2.c -------------------------------------------------------------------------------- /lib/subghz/protocols/secplus_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/secplus_v2.h -------------------------------------------------------------------------------- /lib/subghz/protocols/somfy_keytis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/somfy_keytis.c -------------------------------------------------------------------------------- /lib/subghz/protocols/somfy_keytis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/somfy_keytis.h -------------------------------------------------------------------------------- /lib/subghz/protocols/somfy_telis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/somfy_telis.c -------------------------------------------------------------------------------- /lib/subghz/protocols/somfy_telis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/somfy_telis.h -------------------------------------------------------------------------------- /lib/subghz/protocols/star_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/star_line.c -------------------------------------------------------------------------------- /lib/subghz/protocols/star_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/protocols/star_line.h -------------------------------------------------------------------------------- /lib/subghz/receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/receiver.c -------------------------------------------------------------------------------- /lib/subghz/receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/receiver.h -------------------------------------------------------------------------------- /lib/subghz/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/registry.c -------------------------------------------------------------------------------- /lib/subghz/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/registry.h -------------------------------------------------------------------------------- /lib/subghz/subghz_keystore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_keystore.c -------------------------------------------------------------------------------- /lib/subghz/subghz_keystore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_keystore.h -------------------------------------------------------------------------------- /lib/subghz/subghz_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_setting.c -------------------------------------------------------------------------------- /lib/subghz/subghz_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_setting.h -------------------------------------------------------------------------------- /lib/subghz/subghz_tx_rx_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_tx_rx_worker.c -------------------------------------------------------------------------------- /lib/subghz/subghz_tx_rx_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_tx_rx_worker.h -------------------------------------------------------------------------------- /lib/subghz/subghz_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_worker.c -------------------------------------------------------------------------------- /lib/subghz/subghz_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/subghz_worker.h -------------------------------------------------------------------------------- /lib/subghz/transmitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/transmitter.c -------------------------------------------------------------------------------- /lib/subghz/transmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/transmitter.h -------------------------------------------------------------------------------- /lib/subghz/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/subghz/types.h -------------------------------------------------------------------------------- /lib/toolbox/.gitignore: -------------------------------------------------------------------------------- 1 | version.inc.h 2 | -------------------------------------------------------------------------------- /lib/toolbox/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/SConscript -------------------------------------------------------------------------------- /lib/toolbox/api_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/api_lock.h -------------------------------------------------------------------------------- /lib/toolbox/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/args.c -------------------------------------------------------------------------------- /lib/toolbox/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/args.h -------------------------------------------------------------------------------- /lib/toolbox/buffer_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/buffer_stream.c -------------------------------------------------------------------------------- /lib/toolbox/buffer_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/buffer_stream.h -------------------------------------------------------------------------------- /lib/toolbox/crc32_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/crc32_calc.c -------------------------------------------------------------------------------- /lib/toolbox/crc32_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/crc32_calc.h -------------------------------------------------------------------------------- /lib/toolbox/dir_walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/dir_walk.c -------------------------------------------------------------------------------- /lib/toolbox/dir_walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/dir_walk.h -------------------------------------------------------------------------------- /lib/toolbox/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/hex.c -------------------------------------------------------------------------------- /lib/toolbox/hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/hex.h -------------------------------------------------------------------------------- /lib/toolbox/hmac_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/hmac_sha256.c -------------------------------------------------------------------------------- /lib/toolbox/hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/hmac_sha256.h -------------------------------------------------------------------------------- /lib/toolbox/level_duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/level_duration.h -------------------------------------------------------------------------------- /lib/toolbox/m_cstr_dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/m_cstr_dup.h -------------------------------------------------------------------------------- /lib/toolbox/manchester_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/manchester_decoder.c -------------------------------------------------------------------------------- /lib/toolbox/manchester_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/manchester_decoder.h -------------------------------------------------------------------------------- /lib/toolbox/manchester_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/manchester_encoder.c -------------------------------------------------------------------------------- /lib/toolbox/manchester_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/manchester_encoder.h -------------------------------------------------------------------------------- /lib/toolbox/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/md5.c -------------------------------------------------------------------------------- /lib/toolbox/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/md5.h -------------------------------------------------------------------------------- /lib/toolbox/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/path.c -------------------------------------------------------------------------------- /lib/toolbox/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/path.h -------------------------------------------------------------------------------- /lib/toolbox/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/profiler.c -------------------------------------------------------------------------------- /lib/toolbox/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/profiler.h -------------------------------------------------------------------------------- /lib/toolbox/property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/property.c -------------------------------------------------------------------------------- /lib/toolbox/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/property.h -------------------------------------------------------------------------------- /lib/toolbox/protocols/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/protocols/protocol.h -------------------------------------------------------------------------------- /lib/toolbox/pulse_joiner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/pulse_joiner.c -------------------------------------------------------------------------------- /lib/toolbox/pulse_joiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/pulse_joiner.h -------------------------------------------------------------------------------- /lib/toolbox/random_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/random_name.c -------------------------------------------------------------------------------- /lib/toolbox/random_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/random_name.h -------------------------------------------------------------------------------- /lib/toolbox/saved_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/saved_struct.c -------------------------------------------------------------------------------- /lib/toolbox/saved_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/saved_struct.h -------------------------------------------------------------------------------- /lib/toolbox/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/sha256.c -------------------------------------------------------------------------------- /lib/toolbox/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/sha256.h -------------------------------------------------------------------------------- /lib/toolbox/stream/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/file_stream.c -------------------------------------------------------------------------------- /lib/toolbox/stream/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/file_stream.h -------------------------------------------------------------------------------- /lib/toolbox/stream/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/stream.c -------------------------------------------------------------------------------- /lib/toolbox/stream/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/stream.h -------------------------------------------------------------------------------- /lib/toolbox/stream/stream_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/stream_cache.c -------------------------------------------------------------------------------- /lib/toolbox/stream/stream_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/stream_cache.h -------------------------------------------------------------------------------- /lib/toolbox/stream/stream_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/stream_i.h -------------------------------------------------------------------------------- /lib/toolbox/stream/string_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/string_stream.c -------------------------------------------------------------------------------- /lib/toolbox/stream/string_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/stream/string_stream.h -------------------------------------------------------------------------------- /lib/toolbox/tar/tar_archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/tar/tar_archive.c -------------------------------------------------------------------------------- /lib/toolbox/tar/tar_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/tar/tar_archive.h -------------------------------------------------------------------------------- /lib/toolbox/value_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/value_index.c -------------------------------------------------------------------------------- /lib/toolbox/value_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/value_index.h -------------------------------------------------------------------------------- /lib/toolbox/varint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/varint.c -------------------------------------------------------------------------------- /lib/toolbox/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/varint.h -------------------------------------------------------------------------------- /lib/toolbox/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/version.c -------------------------------------------------------------------------------- /lib/toolbox/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/toolbox/version.h -------------------------------------------------------------------------------- /lib/u8g2/u8g2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2.h -------------------------------------------------------------------------------- /lib/u8g2/u8g2_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_bitmap.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_box.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_buffer.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_circle.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_d_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_d_memory.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_font.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_fonts.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_glue.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_glue.h -------------------------------------------------------------------------------- /lib/u8g2/u8g2_hvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_hvline.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_intersection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_intersection.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_line.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_ll_hvline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_ll_hvline.c -------------------------------------------------------------------------------- /lib/u8g2/u8g2_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8g2_setup.c -------------------------------------------------------------------------------- /lib/u8g2/u8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8.h -------------------------------------------------------------------------------- /lib/u8g2/u8x8_8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8_8x8.c -------------------------------------------------------------------------------- /lib/u8g2/u8x8_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8_byte.c -------------------------------------------------------------------------------- /lib/u8g2/u8x8_cad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8_cad.c -------------------------------------------------------------------------------- /lib/u8g2/u8x8_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8_display.c -------------------------------------------------------------------------------- /lib/u8g2/u8x8_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8_gpio.c -------------------------------------------------------------------------------- /lib/u8g2/u8x8_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/u8g2/u8x8_setup.c -------------------------------------------------------------------------------- /lib/update_util/dfu_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/dfu_file.c -------------------------------------------------------------------------------- /lib/update_util/dfu_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/dfu_file.h -------------------------------------------------------------------------------- /lib/update_util/dfu_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/dfu_headers.h -------------------------------------------------------------------------------- /lib/update_util/lfs_backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/lfs_backup.c -------------------------------------------------------------------------------- /lib/update_util/lfs_backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/lfs_backup.h -------------------------------------------------------------------------------- /lib/update_util/update_manifest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/update_manifest.c -------------------------------------------------------------------------------- /lib/update_util/update_manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/update_manifest.h -------------------------------------------------------------------------------- /lib/update_util/update_operation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/update_operation.c -------------------------------------------------------------------------------- /lib/update_util/update_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/lib/update_util/update_operation.h -------------------------------------------------------------------------------- /scripts/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/ReadMe.md -------------------------------------------------------------------------------- /scripts/User/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/User/ReadMe.md -------------------------------------------------------------------------------- /scripts/User/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/User/decode.py -------------------------------------------------------------------------------- /scripts/User/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/User/encode.py -------------------------------------------------------------------------------- /scripts/User/icondecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/User/icondecode.py -------------------------------------------------------------------------------- /scripts/User/iconencode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/User/iconencode.py -------------------------------------------------------------------------------- /scripts/amap_mariadb_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/amap_mariadb_insert.py -------------------------------------------------------------------------------- /scripts/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/assets.py -------------------------------------------------------------------------------- /scripts/bin2dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/bin2dfu.py -------------------------------------------------------------------------------- /scripts/fbt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/fbt/appmanifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/appmanifest.py -------------------------------------------------------------------------------- /scripts/fbt/elfmanifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/elfmanifest.py -------------------------------------------------------------------------------- /scripts/fbt/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/sdk/__init__.py -------------------------------------------------------------------------------- /scripts/fbt/sdk/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/sdk/cache.py -------------------------------------------------------------------------------- /scripts/fbt/sdk/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/sdk/collector.py -------------------------------------------------------------------------------- /scripts/fbt/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/util.py -------------------------------------------------------------------------------- /scripts/fbt/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt/version.py -------------------------------------------------------------------------------- /scripts/fbt_tools/blackmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/blackmagic.py -------------------------------------------------------------------------------- /scripts/fbt_tools/ccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/ccache.py -------------------------------------------------------------------------------- /scripts/fbt_tools/compilation_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/compilation_db.py -------------------------------------------------------------------------------- /scripts/fbt_tools/crosscc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/crosscc.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_apps.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_assets.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_debugopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_debugopts.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_dist.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_extapps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_extapps.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_help.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_sdk.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_tweaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_tweaks.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fbt_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fbt_version.py -------------------------------------------------------------------------------- /scripts/fbt_tools/fwbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/fwbin.py -------------------------------------------------------------------------------- /scripts/fbt_tools/gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/gdb.py -------------------------------------------------------------------------------- /scripts/fbt_tools/jflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/jflash.py -------------------------------------------------------------------------------- /scripts/fbt_tools/objdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/objdump.py -------------------------------------------------------------------------------- /scripts/fbt_tools/openocd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/openocd.py -------------------------------------------------------------------------------- /scripts/fbt_tools/python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/python3.py -------------------------------------------------------------------------------- /scripts/fbt_tools/sconsmodular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/sconsmodular.py -------------------------------------------------------------------------------- /scripts/fbt_tools/strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fbt_tools/strip.py -------------------------------------------------------------------------------- /scripts/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flash.py -------------------------------------------------------------------------------- /scripts/flipper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/flipper/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/app.py -------------------------------------------------------------------------------- /scripts/flipper/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/flipper/assets/copro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/assets/copro.py -------------------------------------------------------------------------------- /scripts/flipper/assets/coprobin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/assets/coprobin.py -------------------------------------------------------------------------------- /scripts/flipper/assets/dolphin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/assets/dolphin.py -------------------------------------------------------------------------------- /scripts/flipper/assets/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/assets/icon.py -------------------------------------------------------------------------------- /scripts/flipper/assets/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/assets/manifest.py -------------------------------------------------------------------------------- /scripts/flipper/assets/obdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/assets/obdata.py -------------------------------------------------------------------------------- /scripts/flipper/cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/cube.py -------------------------------------------------------------------------------- /scripts/flipper/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/storage.py -------------------------------------------------------------------------------- /scripts/flipper/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/utils/__init__.py -------------------------------------------------------------------------------- /scripts/flipper/utils/cdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/utils/cdc.py -------------------------------------------------------------------------------- /scripts/flipper/utils/fff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/utils/fff.py -------------------------------------------------------------------------------- /scripts/flipper/utils/fstree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/utils/fstree.py -------------------------------------------------------------------------------- /scripts/flipper/utils/templite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/flipper/utils/templite.py -------------------------------------------------------------------------------- /scripts/fwsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/fwsize.py -------------------------------------------------------------------------------- /scripts/get_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/get_env.py -------------------------------------------------------------------------------- /scripts/guruguru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/guruguru.py -------------------------------------------------------------------------------- /scripts/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/lint.py -------------------------------------------------------------------------------- /scripts/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/meta.py -------------------------------------------------------------------------------- /scripts/ob.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/ob.data -------------------------------------------------------------------------------- /scripts/ob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/ob.py -------------------------------------------------------------------------------- /scripts/ob_custradio.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/ob_custradio.data -------------------------------------------------------------------------------- /scripts/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/otp.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/runfap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/runfap.py -------------------------------------------------------------------------------- /scripts/sconsdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/sconsdist.py -------------------------------------------------------------------------------- /scripts/selfupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/selfupdate.py -------------------------------------------------------------------------------- /scripts/serial_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/serial_cli.py -------------------------------------------------------------------------------- /scripts/slideshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/slideshow.py -------------------------------------------------------------------------------- /scripts/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/storage.py -------------------------------------------------------------------------------- /scripts/testing/await_flipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/testing/await_flipper.py -------------------------------------------------------------------------------- /scripts/testing/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/testing/units.py -------------------------------------------------------------------------------- /scripts/toolchain/fbtenv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/toolchain/fbtenv.cmd -------------------------------------------------------------------------------- /scripts/toolchain/fbtenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/toolchain/fbtenv.sh -------------------------------------------------------------------------------- /scripts/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/update.py -------------------------------------------------------------------------------- /scripts/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/scripts/version.py -------------------------------------------------------------------------------- /site_scons/cc.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/cc.scons -------------------------------------------------------------------------------- /site_scons/commandline.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/commandline.scons -------------------------------------------------------------------------------- /site_scons/environ.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/environ.scons -------------------------------------------------------------------------------- /site_scons/extapps.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/extapps.scons -------------------------------------------------------------------------------- /site_scons/fbt_extra/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/fbt_extra/util.py -------------------------------------------------------------------------------- /site_scons/firmwareopts.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/firmwareopts.scons -------------------------------------------------------------------------------- /site_scons/site_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/site_scons/site_init.py -------------------------------------------------------------------------------- /test_iso7816_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/test_iso7816_helpers.c -------------------------------------------------------------------------------- /test_mrtd_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dabolus/flipperzero-firmware-rpg/HEAD/test_mrtd_helpers.c --------------------------------------------------------------------------------