 0a8a944e10
			
		
	
	
		0a8a944e10
		
			
		
	
	
	
	
		
			
			* SubGhz: Add millis() furi, add subghz history struct * SubGhz: Fix subghz history * Gubghz: Fix code repeat history, add clean history * SubGhz: reading and adding keys to history * Gui: Renaming Sub 1-Ghz -> SubGhz * Archive: Renaming Sub 1-Ghz -> SubGhz * SubGhz: Add menu history, modified button for sending a signal, changed output of data about accepted protocol * Archive: Fix name subghz * SubGhz: Menu navigation * Assets: Add assets/SubGHz/icon.png * Assets: add new icons for subghz * SubGhz: Fix name Add manually scene * SubGhz: Fix load icon Read scene. rename encoder struct, rename protocol function load from file, add load raw data protocol, add info pleasant signals all protocol * SubGhz: fix memory leak * SubGhz: change of receiving frequency for read scene * SubGhz: Add save/load frequency and preset, add automatic configuration of transmit/receive to the desired frequency and modulation, add button "save" config scene * SubGhz: Fix frequency and preset, fix frequency add manualli scene, fix re-executing the parser * Furi-hal-subghz: add 2-FSK config, fix ook config 650KHz BW Tx filter * Fix formatting and release build * SubGhz: Delete read scene * SubGhz: Fix frequency add manualli scene, refactoring code * SubGhz: 2 profiles for OOK, fix broken build. * SubGhz: Add passing static codes from read scene, add notification read scene, refactoring code * SubGhz: fix assert on worker double stop. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			84 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/gui_i.h>
 | |
| #include <gui/canvas.h>
 | |
| #include <gui/elements.h>
 | |
| #include <furi.h>
 | |
| #include <storage/storage.h>
 | |
| 
 | |
| #define MAX_LEN_PX 100
 | |
| #define MAX_NAME_LEN 255
 | |
| #define FRAME_HEIGHT 12
 | |
| #define MENU_ITEMS 4
 | |
| 
 | |
| typedef enum {
 | |
|     ArchiveFileTypeIButton,
 | |
|     ArchiveFileTypeNFC,
 | |
|     ArchiveFileTypeSubGhz,
 | |
|     ArchiveFileTypeLFRFID,
 | |
|     ArchiveFileTypeIrda,
 | |
|     ArchiveFileTypeFolder,
 | |
|     ArchiveFileTypeUnknown,
 | |
|     AppIdTotal,
 | |
| } ArchiveFileTypeEnum;
 | |
| 
 | |
| typedef enum {
 | |
|     ArchiveTabFavorites,
 | |
|     ArchiveTabLFRFID,
 | |
|     ArchiveTabSubGhz,
 | |
|     ArchiveTabNFC,
 | |
|     ArchiveTabIButton,
 | |
|     ArchiveTabIrda,
 | |
|     ArchiveTabBrowser,
 | |
|     ArchiveTabTotal,
 | |
| } ArchiveTabEnum;
 | |
| 
 | |
| typedef struct {
 | |
|     string_t name;
 | |
|     ArchiveFileTypeEnum type;
 | |
|     bool fav;
 | |
| } ArchiveFile_t;
 | |
| 
 | |
| static void ArchiveFile_t_init(ArchiveFile_t* obj) {
 | |
|     obj->type = ArchiveFileTypeUnknown;
 | |
|     string_init(obj->name);
 | |
| }
 | |
| 
 | |
| static void ArchiveFile_t_init_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
 | |
|     obj->type = src->type;
 | |
|     string_init_set(obj->name, src->name);
 | |
| }
 | |
| 
 | |
| static void ArchiveFile_t_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
 | |
|     obj->type = src->type;
 | |
|     string_set(obj->name, src->name);
 | |
| }
 | |
| 
 | |
| static void ArchiveFile_t_clear(ArchiveFile_t* obj) {
 | |
|     string_clear(obj->name);
 | |
| }
 | |
| 
 | |
| ARRAY_DEF(
 | |
|     files_array,
 | |
|     ArchiveFile_t,
 | |
|     (INIT(API_2(ArchiveFile_t_init)),
 | |
|      SET(API_6(ArchiveFile_t_set)),
 | |
|      INIT_SET(API_6(ArchiveFile_t_init_set)),
 | |
|      CLEAR(API_2(ArchiveFile_t_clear))))
 | |
| 
 | |
| typedef struct {
 | |
|     uint8_t tab_idx;
 | |
|     uint8_t menu_idx;
 | |
|     uint16_t idx;
 | |
|     uint16_t list_offset;
 | |
|     files_array_t files;
 | |
|     bool menu;
 | |
| } ArchiveViewModel;
 | |
| 
 | |
| void archive_view_render(Canvas* canvas, void* model);
 | |
| void archive_trim_file_ext(char* name);
 | |
| 
 | |
| static inline bool is_known_app(ArchiveFileTypeEnum type) {
 | |
|     return (type != ArchiveFileTypeFolder && type != ArchiveFileTypeUnknown);
 | |
| }
 |