Rolling-Flaws (KeeLoq rolling code teacher)

This commit is contained in:
Derek Jamison
2023-09-01 17:24:39 -05:00
parent 26104939ab
commit c0241ed223
48 changed files with 2496 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include <furi.h>
#ifdef TAG
#undef TAG
#endif
#define TAG "RollingFlawsUtils"
size_t __furi_string_extract_string(
FuriString* buffer,
size_t start_index,
char* text,
char delim,
FuriString* result);
uint32_t
__furi_string_extract_int(FuriString* buffer, char* text, char delim, uint32_t default_value);
uint32_t __furi_string_hex_to_uint32(FuriString* str);
void __gui_redraw();