diff --git a/ReadMe.md b/ReadMe.md
index 927369e07..01f154296 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -1,6 +1,8 @@
-# Flipper Zero Unleashed Firmware
-
-
+
Welcome to Flipper Zero's Custom Firmware repo!
Our goal is to make any features possible in this device without any limitations!
@@ -57,7 +59,7 @@ See changelog in releases for latest updates!
- ESP8266 Deauther plugin [(by SequoiaSan)](https://github.com/SequoiaSan/FlipperZero-Wifi-ESP8266-Deauther-Module)
- WiFi Scanner plugin [(by SequoiaSan)](https://github.com/SequoiaSan/FlipperZero-WiFi-Scanner_Module)
-- Dec/Hex Converter plugin [(by theisolinearchip)](https://github.com/theisolinearchip/flipperzero_stuff/tree/main/applications/dec_hex_converter)
+- MultiConverter plugin [(by theisolinearchip)](https://github.com/theisolinearchip/flipperzero_stuff)
- WAV player plugin (fixed) [(OFW: DrZlo13)](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player)
- UPC-A Barcode generator plugin [(by McAzzaMan)](https://github.com/McAzzaMan/flipperzero-firmware/tree/UPC-A_Barcode_Generator/applications/barcode_generator)
- GPIO: Sentry Safe plugin [(by H4ckd4ddy)](https://github.com/H4ckd4ddy/flipperzero-sentry-safe-plugin)
@@ -91,6 +93,8 @@ See changelog in releases for latest updates!
## [- Barcode Generator](https://github.com/Eng1n33r/flipperzero-firmware/blob/dev/documentation/BarcodeGenerator.md)
+## [- Multi Converter](https://github.com/Eng1n33r/flipperzero-firmware/blob/dev/documentation/MultiConverter.md)
+
## [- WAV Player sample files & how to convert](https://github.com/UberGuidoZ/Flipper/tree/main/Wav_Player#readme)
### **Plugins that works with external hardware**
diff --git a/applications/dec_hex_converter/dec_hex_converter.c b/applications/dec_hex_converter/dec_hex_converter.c
deleted file mode 100644
index 98a090a82..000000000
--- a/applications/dec_hex_converter/dec_hex_converter.c
+++ /dev/null
@@ -1,404 +0,0 @@
-#include
-#include
-#include
-#include
-
-#define DEC_HEX_CONVERTER_NUMBER_DIGITS 9
-#define DEC_HEX_CONVERTER_KEYS 18
-#define DEC_HEX_CONVERTER_KEY_DEL 16
-// #define DEC_HEX_CONVERTER_KEY_SWAP 17 // actually not used...
-
-#define DEC_HEX_CONVERTER_CHAR_DEL '<'
-#define DEC_HEX_CONVERTER_CHAR_SWAP 's'
-#define DEC_HEX_CONVERTER_CHAR_MODE '#'
-#define DEC_HEX_CONVERTER_CHAR_OVERFLOW '#'
-
-#define DEC_HEX_CONVERTER_KEY_FRAME_MARGIN 3
-#define DEC_HEX_CONVERTER_KEY_CHAR_HEIGHT 8
-
-#define DEC_HEX_MAX_SUPORTED_DEC_INT 999999999
-
-typedef enum {
- EventTypeKey,
-} EventType;
-
-typedef struct {
- InputEvent input;
- EventType type;
-} DecHexConverterEvent;
-
-typedef enum {
- ModeDec,
- ModeHex,
-} Mode;
-
-// setting up one char array next to the other one causes the canvas_draw_str to display both of them
-// when addressing the first one if there's no string terminator or similar indicator. Adding a \0 seems
-// to work fine to prevent that, so add a final last char outside the size constants (added on init
-// and NEVER changed nor referenced again)
-//
-// (as a reference, canvas_draw_str ends up calling u8g2_DrawStr from u8g2_font.c,
-// that finally ends up calling u8g2_draw_string)
-typedef struct {
- char dec_number[DEC_HEX_CONVERTER_NUMBER_DIGITS + 1];
- char hex_number[DEC_HEX_CONVERTER_NUMBER_DIGITS + 1];
- Mode mode; // dec / hex
- int8_t cursor; // position on keyboard (includes digit letters and other options)
- int8_t digit_pos; // current digit on selected mode
-} DecHexConverterState;
-
-// move cursor left / right (TODO: implement menu nav in a more "standard" and reusable way?)
-void dec_hex_converter_logic_move_cursor_lr(
- DecHexConverterState* const dec_hex_converter_state,
- int8_t d) {
- dec_hex_converter_state->cursor += d;
-
- if(dec_hex_converter_state->cursor > DEC_HEX_CONVERTER_KEYS - 1)
- dec_hex_converter_state->cursor = 0;
- else if(dec_hex_converter_state->cursor < 0)
- dec_hex_converter_state->cursor = DEC_HEX_CONVERTER_KEYS - 1;
-
- // if we're moving left / right to the letters keys on ModeDec just go to the closest available key
- if(dec_hex_converter_state->mode == ModeDec) {
- if(dec_hex_converter_state->cursor == 10)
- dec_hex_converter_state->cursor = 16;
- else if(dec_hex_converter_state->cursor == 15)
- dec_hex_converter_state->cursor = 9;
- }
-}
-
-// move cursor up / down; there're two lines, so we basically toggle
-void dec_hex_converter_logic_move_cursor_ud(DecHexConverterState* const dec_hex_converter_state) {
- if(dec_hex_converter_state->cursor < 9) {
- // move to second line ("down")
- dec_hex_converter_state->cursor += 9;
-
- // if we're reaching the letter keys while ModeDec, just move left / right for the first available key
- if(dec_hex_converter_state->mode == ModeDec &&
- (dec_hex_converter_state->cursor >= 10 && dec_hex_converter_state->cursor <= 15)) {
- if(dec_hex_converter_state->cursor <= 12)
- dec_hex_converter_state->cursor = 9;
- else
- dec_hex_converter_state->cursor = 16;
- }
- } else {
- // move to first line ("up")
- dec_hex_converter_state->cursor -= 9;
- }
-}
-
-// fetch number from current mode and modifies the destination one, RM dnt stel pls
-// (if destination is shorter than the output value, overried with "-" chars or something similar)
-void dec_hex_converter_logic_convert_number(DecHexConverterState* const dec_hex_converter_state) {
- char* s_ptr;
- char* d_ptr;
-
- char dest[DEC_HEX_CONVERTER_NUMBER_DIGITS];
- int i = 0; // current index on destination array
-
- if(dec_hex_converter_state->mode == ModeDec) {
- // DEC to HEX cannot overflow if they're, at least, the same size
-
- s_ptr = dec_hex_converter_state->dec_number;
- d_ptr = dec_hex_converter_state->hex_number;
-
- int a = atoi(s_ptr);
- int r;
- while(a != 0) {
- r = a % 16;
- dest[i] = r + (r < 10 ? '0' : ('A' - 10));
- a /= 16;
- i++;
- }
-
- } else {
- s_ptr = dec_hex_converter_state->hex_number;
- d_ptr = dec_hex_converter_state->dec_number;
-
- int a = strtol(s_ptr, NULL, 16);
- if(a > DEC_HEX_MAX_SUPORTED_DEC_INT) {
- // draw all "###" if there's an overflow
- for(int j = 0; j < DEC_HEX_CONVERTER_NUMBER_DIGITS; j++) {
- d_ptr[j] = DEC_HEX_CONVERTER_CHAR_OVERFLOW;
- }
- return;
- } else {
- while(a > 0) {
- dest[i++] = (a % 10) + '0';
- a /= 10;
- }
- }
- }
-
- // dest is reversed, copy to destination pointer and append empty chars at the end
- for(int j = 0; j < DEC_HEX_CONVERTER_NUMBER_DIGITS; j++) {
- if(i >= 1)
- d_ptr[j] = dest[--i];
- else
- d_ptr[j] = ' ';
- }
-}
-
-// change from DEC to HEX or HEX to DEC, set the digit_pos to the last position not empty on the destination mode
-void dec_hex_converter_logic_swap_mode(DecHexConverterState* const dec_hex_converter_state) {
- char* n_ptr;
- if(dec_hex_converter_state->mode == ModeDec) {
- dec_hex_converter_state->mode = ModeHex;
- n_ptr = dec_hex_converter_state->hex_number;
- } else {
- dec_hex_converter_state->mode = ModeDec;
- n_ptr = dec_hex_converter_state->dec_number;
- }
-
- dec_hex_converter_state->digit_pos = DEC_HEX_CONVERTER_NUMBER_DIGITS;
- for(int i = 0; i < DEC_HEX_CONVERTER_NUMBER_DIGITS; i++) {
- if(n_ptr[i] == ' ') {
- dec_hex_converter_state->digit_pos = i;
- break;
- }
- }
-}
-
-// removes the number on current digit on current mode
-static void
- dec_hex_converter_logic_del_number(DecHexConverterState* const dec_hex_converter_state) {
- if(dec_hex_converter_state->digit_pos > 0) dec_hex_converter_state->digit_pos--;
-
- if(dec_hex_converter_state->mode == ModeDec) {
- dec_hex_converter_state->dec_number[dec_hex_converter_state->digit_pos] = ' ';
- } else {
- dec_hex_converter_state->hex_number[dec_hex_converter_state->digit_pos] = ' ';
- }
-}
-
-// append a number to the digit on the current mode
-static void dec_hex_converter_logic_add_number(
- DecHexConverterState* const dec_hex_converter_state,
- int8_t number) {
- // ignore HEX values on DEC mode (probably button nav will be disabled too, so cannot reach);
- // also do not add anything if we're out of bound
- if((number > 9 && dec_hex_converter_state->mode == ModeDec) ||
- dec_hex_converter_state->digit_pos >= DEC_HEX_CONVERTER_NUMBER_DIGITS)
- return;
-
- char* s_ptr;
-
- if(dec_hex_converter_state->mode == ModeDec) {
- s_ptr = dec_hex_converter_state->dec_number;
- } else {
- s_ptr = dec_hex_converter_state->hex_number;
- }
-
- if(number < 10) {
- s_ptr[dec_hex_converter_state->digit_pos] = number + '0';
- } else {
- s_ptr[dec_hex_converter_state->digit_pos] = (number - 10) + 'A'; // A-F (HEX only)
- }
-
- dec_hex_converter_state->digit_pos++;
-}
-
-// ---------------
-
-static void dec_hex_converter_render_callback(Canvas* const canvas, void* ctx) {
- const DecHexConverterState* dec_hex_converter_state = acquire_mutex((ValueMutex*)ctx, 25);
- if(dec_hex_converter_state == NULL) {
- return;
- }
-
- canvas_set_color(canvas, ColorBlack);
-
- // DEC
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str(canvas, 2, 10, "DEC: ");
-
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str(canvas, 2 + 30, 10, dec_hex_converter_state->dec_number);
-
- // HEX
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str(canvas, 2, 10 + 12, "HEX: ");
-
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str(canvas, 2 + 30, 10 + 12, dec_hex_converter_state->hex_number);
-
- // current mode indicator
- // char buffer[4];
- // snprintf(buffer, sizeof(buffer), "%u", dec_hex_converter_state->digit_pos); // debug: show digit position instead of selected mode
- if(dec_hex_converter_state->mode == ModeDec) {
- canvas_draw_glyph(canvas, 128 - 10, 10, DEC_HEX_CONVERTER_CHAR_MODE);
- } else {
- canvas_draw_glyph(canvas, 128 - 10, 10 + 12, DEC_HEX_CONVERTER_CHAR_MODE);
- }
-
- // draw the line
- canvas_draw_line(canvas, 2, 25, 128 - 3, 25);
-
- // draw the keyboard
- uint8_t _x = 5;
- uint8_t _y = 25 + 15; // line + 10
-
- for(int i = 0; i < DEC_HEX_CONVERTER_KEYS; i++) {
- char g;
- if(i < 10)
- g = (i + '0');
- else if(i < 16)
- g = ((i - 10) + 'A');
- else if(i == 16)
- g = DEC_HEX_CONVERTER_CHAR_DEL; // '<'
- else
- g = DEC_HEX_CONVERTER_CHAR_SWAP; // 's'
-
- uint8_t g_w = canvas_glyph_width(canvas, g);
-
- // disable letters on DEC mode (but keep the previous width for visual purposes - show "blank keys")
- if(dec_hex_converter_state->mode == ModeDec && i > 9 && i < 16) g = ' ';
-
- if(dec_hex_converter_state->cursor == i) {
- canvas_draw_box(
- canvas,
- _x - DEC_HEX_CONVERTER_KEY_FRAME_MARGIN,
- _y - (DEC_HEX_CONVERTER_KEY_CHAR_HEIGHT + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN),
- DEC_HEX_CONVERTER_KEY_FRAME_MARGIN + g_w + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN,
- DEC_HEX_CONVERTER_KEY_CHAR_HEIGHT + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN * 2);
- canvas_set_color(canvas, ColorWhite);
- canvas_draw_glyph(canvas, _x, _y, g);
- canvas_set_color(canvas, ColorBlack);
- } else {
- canvas_draw_frame(
- canvas,
- _x - DEC_HEX_CONVERTER_KEY_FRAME_MARGIN,
- _y - (DEC_HEX_CONVERTER_KEY_CHAR_HEIGHT + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN),
- DEC_HEX_CONVERTER_KEY_FRAME_MARGIN + g_w + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN,
- DEC_HEX_CONVERTER_KEY_CHAR_HEIGHT + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN * 2);
- canvas_draw_glyph(canvas, _x, _y, g);
- }
-
- if(i < 8) {
- _x += g_w + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN * 2 + 2;
- } else if(i == 8) {
- _y += (DEC_HEX_CONVERTER_KEY_CHAR_HEIGHT + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN * 2) + 3;
- _x = 7; // some padding at the beginning on second line
- } else {
- _x += g_w + DEC_HEX_CONVERTER_KEY_FRAME_MARGIN * 2 + 1;
- }
- }
-
- release_mutex((ValueMutex*)ctx, dec_hex_converter_state);
-}
-
-static void
- dec_hex_converter_input_callback(InputEvent* input_event, FuriMessageQueue* event_queue) {
- furi_assert(event_queue);
-
- DecHexConverterEvent event = {.type = EventTypeKey, .input = *input_event};
- furi_message_queue_put(event_queue, &event, FuriWaitForever);
-}
-
-static void dec_hex_converter_init(DecHexConverterState* const dec_hex_converter_state) {
- dec_hex_converter_state->mode = ModeDec;
- dec_hex_converter_state->digit_pos = 0;
-
- dec_hex_converter_state->dec_number[DEC_HEX_CONVERTER_NUMBER_DIGITS] = '\0'; // null terminator
- dec_hex_converter_state->hex_number[DEC_HEX_CONVERTER_NUMBER_DIGITS] = '\0'; // null terminator
-
- for(int i = 0; i < DEC_HEX_CONVERTER_NUMBER_DIGITS; i++) {
- dec_hex_converter_state->dec_number[i] = ' ';
- dec_hex_converter_state->hex_number[i] = ' ';
- }
-}
-
-// main entry point
-int32_t dec_hex_converter_app(void* p) {
- UNUSED(p);
-
- // get event queue
- FuriMessageQueue* event_queue = furi_message_queue_alloc(8, sizeof(DecHexConverterEvent));
-
- // allocate state
- DecHexConverterState* dec_hex_converter_state = malloc(sizeof(DecHexConverterState));
-
- // set mutex for plugin state (different threads can access it)
- ValueMutex state_mutex;
- if(!init_mutex(&state_mutex, dec_hex_converter_state, sizeof(dec_hex_converter_state))) {
- FURI_LOG_E("DecHexConverter", "cannot create mutex\r\n");
- furi_message_queue_free(event_queue);
- free(dec_hex_converter_state);
- return 255;
- }
-
- // register callbacks for drawing and input processing
- ViewPort* view_port = view_port_alloc();
- view_port_draw_callback_set(view_port, dec_hex_converter_render_callback, &state_mutex);
- view_port_input_callback_set(view_port, dec_hex_converter_input_callback, event_queue);
-
- // open GUI and register view_port
- Gui* gui = furi_record_open(RECORD_GUI);
- gui_add_view_port(gui, view_port, GuiLayerFullscreen);
-
- dec_hex_converter_init(dec_hex_converter_state);
-
- // main loop
- DecHexConverterEvent event;
- for(bool processing = true; processing;) {
- FuriStatus event_status = furi_message_queue_get(event_queue, &event, 100);
- DecHexConverterState* dec_hex_converter_state =
- (DecHexConverterState*)acquire_mutex_block(&state_mutex);
-
- if(event_status == FuriStatusOk) {
- // press events
- if(event.type == EventTypeKey) {
- if(event.input.type == InputTypePress) {
- switch(event.input.key) {
- default:
- break;
- case InputKeyUp:
- case InputKeyDown:
- dec_hex_converter_logic_move_cursor_ud(dec_hex_converter_state);
- break;
- case InputKeyRight:
- dec_hex_converter_logic_move_cursor_lr(dec_hex_converter_state, 1);
- break;
- case InputKeyLeft:
- dec_hex_converter_logic_move_cursor_lr(dec_hex_converter_state, -1);
- break;
- case InputKeyOk:
- if(dec_hex_converter_state->cursor < DEC_HEX_CONVERTER_KEY_DEL) {
- // positions from 0 to 15 works as regular numbers (DEC / HEX where applicable)
- // (logic won't allow add numbers > 9 on ModeDec)
- dec_hex_converter_logic_add_number(
- dec_hex_converter_state, dec_hex_converter_state->cursor);
- } else if(dec_hex_converter_state->cursor == DEC_HEX_CONVERTER_KEY_DEL) {
- // del
- dec_hex_converter_logic_del_number(dec_hex_converter_state);
- } else {
- // swap
- dec_hex_converter_logic_swap_mode(dec_hex_converter_state);
- }
-
- dec_hex_converter_logic_convert_number(dec_hex_converter_state);
- break;
- case InputKeyBack:
- processing = false;
- break;
- }
- }
- }
- } else {
- // event timeout
- }
-
- view_port_update(view_port);
- release_mutex(&state_mutex, dec_hex_converter_state);
- }
-
- view_port_enabled_set(view_port, false);
- gui_remove_view_port(gui, view_port);
- furi_record_close(RECORD_GUI);
- view_port_free(view_port);
- furi_message_queue_free(event_queue);
- delete_mutex(&state_mutex);
- free(dec_hex_converter_state);
-
- return 0;
-}
\ No newline at end of file
diff --git a/applications/hid_analyzer/application.fam b/applications/hid_analyzer/application.fam
deleted file mode 100644
index 5005190cc..000000000
--- a/applications/hid_analyzer/application.fam
+++ /dev/null
@@ -1,9 +0,0 @@
-App(
- appid="hid_analyzer",
- name="HID Analyzer",
- apptype=FlipperAppType.PLUGIN,
- entry_point="hid_analyzer_app",
- cdefines=["APP_HID_ANALYZER"],
- stack_size=2 * 1024,
- order=40,
-)
diff --git a/applications/hid_analyzer/helpers/decoder_hid.cpp b/applications/hid_analyzer/helpers/decoder_hid.cpp
deleted file mode 100644
index 176bfe0b9..000000000
--- a/applications/hid_analyzer/helpers/decoder_hid.cpp
+++ /dev/null
@@ -1,98 +0,0 @@
-#include "decoder_hid.h"
-#include
-
-constexpr uint32_t clocks_in_us = 64;
-
-constexpr uint32_t jitter_time_us = 20;
-constexpr uint32_t min_time_us = 64;
-constexpr uint32_t max_time_us = 80;
-
-constexpr uint32_t min_time = (min_time_us - jitter_time_us) * clocks_in_us;
-constexpr uint32_t mid_time = ((max_time_us - min_time_us) / 2 + min_time_us) * clocks_in_us;
-constexpr uint32_t max_time = (max_time_us + jitter_time_us) * clocks_in_us;
-
-bool DecoderHID::read(uint8_t* data, uint8_t data_size) {
- bool result = false;
- furi_assert(data_size >= 3);
-
- if(ready) {
- result = true;
- hid.decode(
- reinterpret_cast(&stored_data), sizeof(uint32_t) * 3, data, data_size);
- ready = false;
- }
-
- return result;
-}
-
-void DecoderHID::process_front(bool polarity, uint32_t time) {
- if(ready) return;
-
- if(polarity == true) {
- last_pulse_time = time;
- } else {
- last_pulse_time += time;
-
- if(last_pulse_time > min_time && last_pulse_time < max_time) {
- bool pulse;
-
- if(last_pulse_time < mid_time) {
- // 6 pulses
- pulse = false;
- } else {
- // 5 pulses
- pulse = true;
- }
-
- if(last_pulse == pulse) {
- pulse_count++;
-
- if(pulse) {
- if(pulse_count > 4) {
- pulse_count = 0;
- store_data(1);
- }
- } else {
- if(pulse_count > 5) {
- pulse_count = 0;
- store_data(0);
- }
- }
- } else {
- if(last_pulse) {
- if(pulse_count > 2) {
- store_data(1);
- }
- } else {
- if(pulse_count > 3) {
- store_data(0);
- }
- }
-
- pulse_count = 0;
- last_pulse = pulse;
- }
- }
- }
-}
-
-DecoderHID::DecoderHID() {
- reset_state();
-}
-
-void DecoderHID::store_data(bool data) {
- stored_data[0] = (stored_data[0] << 1) | ((stored_data[1] >> 31) & 1);
- stored_data[1] = (stored_data[1] << 1) | ((stored_data[2] >> 31) & 1);
- stored_data[2] = (stored_data[2] << 1) | data;
-
- if(hid.can_be_decoded(reinterpret_cast(&stored_data), sizeof(uint32_t) * 3)) {
- ready = true;
- }
-}
-
-void DecoderHID::reset_state() {
- last_pulse = false;
- pulse_count = 0;
- ready = false;
- last_pulse_time = 0;
-}
diff --git a/applications/hid_analyzer/helpers/decoder_hid.h b/applications/hid_analyzer/helpers/decoder_hid.h
deleted file mode 100644
index 5dcb6c265..000000000
--- a/applications/hid_analyzer/helpers/decoder_hid.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-#include
-#include
-#include "protocols/protocol_hid.h"
-
-class DecoderHID {
-public:
- bool read(uint8_t* data, uint8_t data_size);
- void process_front(bool polarity, uint32_t time);
- DecoderHID();
-
-private:
- uint32_t last_pulse_time = 0;
- bool last_pulse;
- uint8_t pulse_count;
-
- uint32_t stored_data[3] = {0, 0, 0};
- void store_data(bool data);
-
- std::atomic ready;
-
- void reset_state();
- ProtocolHID hid;
-};
diff --git a/applications/hid_analyzer/helpers/hid_reader.cpp b/applications/hid_analyzer/helpers/hid_reader.cpp
deleted file mode 100644
index 890d7c651..000000000
--- a/applications/hid_analyzer/helpers/hid_reader.cpp
+++ /dev/null
@@ -1,143 +0,0 @@
-#include "hid_reader.h"
-#include
-#include
-#include
-
-/**
- * @brief private violation assistant for HIDReader
- */
-struct HIDReaderAccessor {
- static void decode(HIDReader& hid_reader, bool polarity) {
- hid_reader.decode(polarity);
- }
-};
-
-void HIDReader::decode(bool polarity) {
- uint32_t current_dwt_value = DWT->CYCCNT;
- uint32_t period = current_dwt_value - last_dwt_value;
- last_dwt_value = current_dwt_value;
-
- decoder_hid.process_front(polarity, period);
-
- detect_ticks++;
-}
-
-bool HIDReader::switch_timer_elapsed() {
- const uint32_t seconds_to_switch = furi_kernel_get_tick_frequency() * 2.0f;
- return (furi_get_tick() - switch_os_tick_last) > seconds_to_switch;
-}
-
-void HIDReader::switch_timer_reset() {
- switch_os_tick_last = furi_get_tick();
-}
-
-void HIDReader::switch_mode() {
- switch(type) {
- case Type::Normal:
- type = Type::Indala;
- furi_hal_rfid_change_read_config(62500.0f, 0.25f);
- break;
- case Type::Indala:
- type = Type::Normal;
- furi_hal_rfid_change_read_config(125000.0f, 0.5f);
- break;
- }
-
- switch_timer_reset();
-}
-
-static void comparator_trigger_callback(bool level, void* comp_ctx) {
- HIDReader* _this = static_cast(comp_ctx);
-
- HIDReaderAccessor::decode(*_this, !level);
-}
-
-HIDReader::HIDReader() {
-}
-
-void HIDReader::start() {
- type = Type::Normal;
-
- furi_hal_rfid_pins_read();
- furi_hal_rfid_tim_read(125000, 0.5);
- furi_hal_rfid_tim_read_start();
- start_comparator();
-
- switch_timer_reset();
- last_read_count = 0;
-}
-
-void HIDReader::start_forced(HIDReader::Type _type) {
- start();
- if(_type == Type::Indala) {
- switch_mode();
- }
-}
-
-void HIDReader::stop() {
- furi_hal_rfid_pins_reset();
- furi_hal_rfid_tim_read_stop();
- furi_hal_rfid_tim_reset();
- stop_comparator();
-}
-
-bool HIDReader::read(LfrfidKeyType* _type, uint8_t* data, uint8_t data_size, bool switch_enable) {
- bool result = false;
- bool something_read = false;
-
- if(decoder_hid.read(data, data_size)) {
- *_type = LfrfidKeyType::KeyH10301; // should be an OK temp
- something_read = true;
- }
-
- // validation
- if(something_read) {
- switch_timer_reset();
-
- if(last_read_type == *_type && memcmp(last_read_data, data, data_size) == 0) {
- last_read_count = last_read_count + 1;
-
- if(last_read_count > 2) {
- result = true;
- }
- } else {
- last_read_type = *_type;
- memcpy(last_read_data, data, data_size);
- last_read_count = 0;
- }
- }
-
- // mode switching
- if(switch_enable && switch_timer_elapsed()) {
- switch_mode();
- last_read_count = 0;
- }
-
- return result;
-}
-
-bool HIDReader::detect() {
- bool detected = false;
- if(detect_ticks > 10) {
- detected = true;
- }
- detect_ticks = 0;
-
- return detected;
-}
-
-bool HIDReader::any_read() {
- return last_read_count > 0;
-}
-
-void HIDReader::start_comparator(void) {
- furi_hal_rfid_comp_set_callback(comparator_trigger_callback, this);
- last_dwt_value = DWT->CYCCNT;
-
- furi_hal_rfid_comp_start();
-}
-
-void HIDReader::stop_comparator(void) {
- furi_hal_rfid_comp_stop();
- furi_hal_rfid_comp_set_callback(NULL, NULL);
-}
diff --git a/applications/hid_analyzer/helpers/hid_reader.h b/applications/hid_analyzer/helpers/hid_reader.h
deleted file mode 100644
index 99dbeb08d..000000000
--- a/applications/hid_analyzer/helpers/hid_reader.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#pragma once
-#include "decoder_hid.h"
-#include "key_info.h"
-
-//#define RFID_GPIO_DEBUG 1
-
-class HIDReader {
-public:
- enum class Type : uint8_t {
- Normal,
- Indala,
- };
-
- HIDReader();
- void start();
- void start_forced(HIDReader::Type type);
- void stop();
- bool read(LfrfidKeyType* _type, uint8_t* data, uint8_t data_size, bool switch_enable = true);
-
- bool detect();
- bool any_read();
-
-private:
- friend struct HIDReaderAccessor;
-
- DecoderHID decoder_hid;
-
- uint32_t last_dwt_value;
-
- void start_comparator(void);
- void stop_comparator(void);
-
- void decode(bool polarity);
-
- uint32_t detect_ticks;
-
- uint32_t switch_os_tick_last;
- bool switch_timer_elapsed();
- void switch_timer_reset();
- void switch_mode();
-
- LfrfidKeyType last_read_type;
- uint8_t last_read_data[LFRFID_KEY_SIZE];
- uint8_t last_read_count;
-
- Type type = Type::Normal;
-};
diff --git a/applications/hid_analyzer/helpers/hid_worker.cpp b/applications/hid_analyzer/helpers/hid_worker.cpp
deleted file mode 100644
index 42230858c..000000000
--- a/applications/hid_analyzer/helpers/hid_worker.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-#include "hid_worker.h"
-
-HIDWorker::HIDWorker() {
-}
-
-HIDWorker::~HIDWorker() {
-}
-
-void HIDWorker::start_read() {
- reader.start();
-}
-
-bool HIDWorker::read() {
- static const uint8_t data_size = LFRFID_KEY_SIZE;
- uint8_t data[data_size] = {0};
- LfrfidKeyType type;
-
- bool result = reader.read(&type, data, data_size);
-
- if(result) {
- key.set_type(type);
- key.set_data(data, data_size);
- };
-
- return result;
-}
-
-bool HIDWorker::detect() {
- return reader.detect();
-}
-
-bool HIDWorker::any_read() {
- return reader.any_read();
-}
-
-void HIDWorker::stop_read() {
- reader.stop();
-}
diff --git a/applications/hid_analyzer/helpers/hid_worker.h b/applications/hid_analyzer/helpers/hid_worker.h
deleted file mode 100644
index e6674bd1b..000000000
--- a/applications/hid_analyzer/helpers/hid_worker.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-#include "key_info.h"
-#include "rfid_key.h"
-#include "hid_reader.h"
-
-class HIDWorker {
-public:
- HIDWorker();
- ~HIDWorker();
-
- void start_read();
- bool read();
- bool detect();
- bool any_read();
- void stop_read();
-
- RfidKey key;
-
-private:
- HIDReader reader;
-};
diff --git a/applications/hid_analyzer/helpers/key_info.h b/applications/hid_analyzer/helpers/key_info.h
deleted file mode 100644
index e465011d0..000000000
--- a/applications/hid_analyzer/helpers/key_info.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-#include
-
-static const uint8_t LFRFID_KEY_SIZE = 8;
-static const uint8_t LFRFID_KEY_NAME_SIZE = 22;
-
-enum class LfrfidKeyType : uint8_t {
- KeyEM4100,
- KeyH10301,
- KeyI40134,
-};
-
-const char* lfrfid_key_get_type_string(LfrfidKeyType type);
-const char* lfrfid_key_get_manufacturer_string(LfrfidKeyType type);
-bool lfrfid_key_get_string_type(const char* string, LfrfidKeyType* type);
-uint8_t lfrfid_key_get_type_data_count(LfrfidKeyType type);
diff --git a/applications/hid_analyzer/helpers/osc_fsk.h b/applications/hid_analyzer/helpers/osc_fsk.h
deleted file mode 100644
index eaaaa10ad..000000000
--- a/applications/hid_analyzer/helpers/osc_fsk.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#pragma once
-#include
-
-/**
- * This code tries to fit the periods into a given number of cycles (phases) by taking cycles from the next cycle of periods.
- */
-class OscFSK {
-public:
- /**
- * Get next period
- * @param bit bit value
- * @param period return period
- * @return bool whether to advance to the next bit
- */
- bool next(bool bit, uint16_t* period);
-
- /**
- * FSK ocillator constructor
- *
- * @param freq_low bit 0 freq
- * @param freq_hi bit 1 freq
- * @param osc_phase_max max oscillator phase
- */
- OscFSK(uint16_t freq_low, uint16_t freq_hi, uint16_t osc_phase_max);
-
-private:
- const uint16_t freq[2];
- const uint16_t osc_phase_max;
- int32_t osc_phase_current;
-};
diff --git a/applications/hid_analyzer/helpers/protocols/protocol_generic.h b/applications/hid_analyzer/helpers/protocols/protocol_generic.h
deleted file mode 100644
index d593f7089..000000000
--- a/applications/hid_analyzer/helpers/protocols/protocol_generic.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#pragma once
-#include "stdint.h"
-#include "stdbool.h"
-
-class ProtocolGeneric {
-public:
- /**
- * @brief Get the encoded data size
- *
- * @return uint8_t size of encoded data in bytes
- */
- virtual uint8_t get_encoded_data_size() = 0;
-
- /**
- * @brief Get the decoded data size
- *
- * @return uint8_t size of decoded data in bytes
- */
- virtual uint8_t get_decoded_data_size() = 0;
-
- /**
- * @brief encode decoded data
- *
- * @param decoded_data
- * @param decoded_data_size
- * @param encoded_data
- * @param encoded_data_size
- */
- virtual void encode(
- const uint8_t* decoded_data,
- const uint8_t decoded_data_size,
- uint8_t* encoded_data,
- const uint8_t encoded_data_size) = 0;
-
- /**
- * @brief decode encoded data
- *
- * @param encoded_data
- * @param encoded_data_size
- * @param decoded_data
- * @param decoded_data_size
- */
- virtual void decode(
- const uint8_t* encoded_data,
- const uint8_t encoded_data_size,
- uint8_t* decoded_data,
- const uint8_t decoded_data_size) = 0;
-
- /**
- * @brief fast check that data can be correctly decoded
- *
- * @param encoded_data
- * @param encoded_data_size
- * @return true - can be correctly decoded
- * @return false - cannot be correctly decoded
- */
- virtual bool can_be_decoded(const uint8_t* encoded_data, const uint8_t encoded_data_size) = 0;
-
- virtual ~ProtocolGeneric(){};
-};
diff --git a/applications/hid_analyzer/helpers/protocols/protocol_hid.cpp b/applications/hid_analyzer/helpers/protocols/protocol_hid.cpp
deleted file mode 100644
index e60eafa29..000000000
--- a/applications/hid_analyzer/helpers/protocols/protocol_hid.cpp
+++ /dev/null
@@ -1,155 +0,0 @@
-#include "protocol_hid.h"
-#include
-
-typedef uint32_t HIDCardData;
-constexpr uint8_t HIDCount = 3;
-constexpr uint8_t HIDBitSize = sizeof(HIDCardData) * 8;
-
-uint8_t ProtocolHID::get_encoded_data_size() {
- return sizeof(HIDCardData) * HIDCount;
-}
-
-uint8_t ProtocolHID::get_decoded_data_size() {
- return 3;
-}
-
-void ProtocolHID::encode(
- const uint8_t* decoded_data,
- const uint8_t decoded_data_size,
- uint8_t* encoded_data,
- const uint8_t encoded_data_size) {
- UNUSED(decoded_data);
- UNUSED(decoded_data_size);
- UNUSED(encoded_data);
- UNUSED(encoded_data_size);
- // bob!
-}
-
-void ProtocolHID::decode(
- const uint8_t* encoded_data,
- const uint8_t encoded_data_size,
- uint8_t* decoded_data,
- const uint8_t decoded_data_size) {
- furi_check(decoded_data_size >= get_decoded_data_size());
- furi_check(encoded_data_size >= get_encoded_data_size());
-
- // header check
- int16_t second1pos = find_second_1(encoded_data);
-
- if((*(encoded_data + 1) & 0b1100) != 0x08) {
- *decoded_data = 37;
- } else {
- *decoded_data = (36 - (second1pos - 8));
- }
-}
-
-int16_t ProtocolHID::find_second_1(const uint8_t* encoded_data) {
- if((*(encoded_data + 1) & 0b11) == 0b10) {
- return 8;
- } else {
- for(int8_t i = 3; i >= 0; i--) {
- if(((*(encoded_data + 0) >> (2 * i)) & 0b11) == 0b10) {
- return (12 - i);
- }
- }
- for(int8_t i = 3; i >= 0; i--) {
- if(((*(encoded_data + 7) >> (2 * i)) & 0b11) == 0b10) {
- return (16 - i);
- }
- }
- for(int8_t i = 3; i >= 2; i--) {
- if(((*(encoded_data + 6) >> (2 * i)) & 0b11) == 0b10) {
- return (20 - i);
- }
- }
- }
-
- return -1;
-}
-
-bool ProtocolHID::can_be_decoded(const uint8_t* encoded_data, const uint8_t encoded_data_size) {
- furi_check(encoded_data_size >= get_encoded_data_size());
-
- const HIDCardData* card_data = reinterpret_cast(encoded_data);
-
- // header check
- int16_t second1pos = -1;
- // packet pre-preamble
- if(*(encoded_data + 3) != 0x1D) {
- return false;
- }
-
- // packet preamble
- if(*(encoded_data + 2) != 0x55) { // first four 0s mandatory in preamble
- return false;
- }
-
- if((*(encoded_data + 1) & 0xF0) != 0x50) { // next two 0s mandatory in preamble
- return false;
- }
-
- if((*(encoded_data + 1) & 0b1100) != 0x08) { // if it's not a 1...
- // either it's a 37-bit or invalid
- // so just continue with the manchester encoding checks
- } else { // it is a 1. so it could be anywhere between 26 and 36 bit encoding. or invalid.
- // we need to find the location of the second 1
- second1pos = find_second_1(encoded_data);
- }
-
- if(second1pos == -1) {
- // we're 37 bit or invalid
- }
-
- // data decoding. ensure all is properly manchester encoded
- uint32_t result = 0;
-
- // decode from word 0
- // coded with 01 = 0, 10 = 1 transitions
- for(int8_t i = 11; i >= 0; i--) {
- switch((*(card_data + 0) >> (2 * i)) & 0b11) {
- case 0b01:
- result = (result << 1) | 0;
- break;
- case 0b10:
- result = (result << 1) | 1;
- break;
- default:
- return false;
- break;
- }
- }
-
- // decode from word 1
- // coded with 01 = 0, 10 = 1 transitions
- for(int8_t i = 15; i >= 0; i--) {
- switch((*(card_data + 1) >> (2 * i)) & 0b11) {
- case 0b01:
- result = (result << 1) | 0;
- break;
- case 0b10:
- result = (result << 1) | 1;
- break;
- default:
- return false;
- break;
- }
- }
-
- // decode from word 2
- // coded with 01 = 0, 10 = 1 transitions
- for(int8_t i = 15; i >= 0; i--) {
- switch((*(card_data + 2) >> (2 * i)) & 0b11) {
- case 0b01:
- result = (result << 1) | 0;
- break;
- case 0b10:
- result = (result << 1) | 1;
- break;
- default:
- return false;
- break;
- }
- }
-
- return true;
-}
diff --git a/applications/hid_analyzer/helpers/protocols/protocol_hid.h b/applications/hid_analyzer/helpers/protocols/protocol_hid.h
deleted file mode 100644
index 0e2636d5b..000000000
--- a/applications/hid_analyzer/helpers/protocols/protocol_hid.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-#include "protocol_generic.h"
-
-class ProtocolHID : public ProtocolGeneric {
-public:
- uint8_t get_encoded_data_size() final;
- uint8_t get_decoded_data_size() final;
-
- void encode(
- const uint8_t* decoded_data,
- const uint8_t decoded_data_size,
- uint8_t* encoded_data,
- const uint8_t encoded_data_size) final;
-
- void decode(
- const uint8_t* encoded_data,
- const uint8_t encoded_data_size,
- uint8_t* decoded_data,
- const uint8_t decoded_data_size) final;
-
- bool can_be_decoded(const uint8_t* encoded_data, const uint8_t encoded_data_size) final;
-
-private:
- int16_t find_second_1(const uint8_t* encoded_data);
-};
diff --git a/applications/hid_analyzer/helpers/pulse_joiner.h b/applications/hid_analyzer/helpers/pulse_joiner.h
deleted file mode 100644
index 1639d8371..000000000
--- a/applications/hid_analyzer/helpers/pulse_joiner.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#pragma once
-#include "stdint.h"
-
-class PulseJoiner {
-public:
- /**
- * @brief Push timer pulse. First negative pulse is ommited.
- *
- * @param polarity pulse polarity: true = high2low, false = low2high
- * @param period overall period time in timer clicks
- * @param pulse pulse time in timer clicks
- *
- * @return true - next pulse can and must be popped immediatly
- */
- bool push_pulse(bool polarity, uint16_t period, uint16_t pulse);
-
- /**
- * @brief Get the next timer pulse. Call only if push_pulse returns true.
- *
- * @param period overall period time in timer clicks
- * @param pulse pulse time in timer clicks
- */
- void pop_pulse(uint16_t* period, uint16_t* pulse);
-
- PulseJoiner();
-
-private:
- struct Pulse {
- bool polarity;
- uint16_t time;
- };
-
- uint8_t pulse_index = 0;
- static const uint8_t pulse_max = 6;
- Pulse pulses[pulse_max];
-};
diff --git a/applications/hid_analyzer/helpers/rfid_key.h b/applications/hid_analyzer/helpers/rfid_key.h
deleted file mode 100644
index 29b87cf9c..000000000
--- a/applications/hid_analyzer/helpers/rfid_key.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-#include "key_info.h"
-#include
-
-class RfidKey {
-public:
- RfidKey();
- ~RfidKey();
-
- void set_type(LfrfidKeyType type);
- void set_data(const uint8_t* data, const uint8_t data_size);
- void set_name(const char* name);
-
- LfrfidKeyType get_type();
- const uint8_t* get_data();
- const char* get_type_text();
- uint8_t get_type_data_count() const;
- char* get_name();
- uint8_t get_name_length();
- void clear();
- RfidKey& operator=(const RfidKey& rhs);
-
-private:
- std::array data;
- LfrfidKeyType type;
- char name[LFRFID_KEY_NAME_SIZE + 1];
-};
diff --git a/applications/hid_analyzer/helpers/rfid_timer_emulator.h b/applications/hid_analyzer/helpers/rfid_timer_emulator.h
deleted file mode 100644
index 874a4c3dd..000000000
--- a/applications/hid_analyzer/helpers/rfid_timer_emulator.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#pragma once
-#include
-#include "key_info.h"
-#include "encoder_generic.h"
-#include "encoder_emmarin.h"
-#include "encoder_hid_h10301.h"
-#include "encoder_indala_40134.h"
-#include "pulse_joiner.h"
-#include