mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
* polling system code done * select service done * select system fixes. works fine now * clean up select sys by idx * reading, saving, loading done. render wrong * render first layer works * render fixed * fix Lite Render triage * regression Lite rendering * sync API with 1.40 release * clean up and lint --------- Co-authored-by: hedger <hedger@users.noreply.github.com>
16 lines
512 B
C
16 lines
512 B
C
#pragma once
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include "felica.h"
|
|
|
|
#include <lib/toolbox/simple_array.h>
|
|
|
|
extern const SimpleArrayConfig felica_service_array_cfg;
|
|
extern const SimpleArrayConfig felica_area_array_cfg;
|
|
extern const SimpleArrayConfig felica_public_block_array_cfg;
|
|
extern const SimpleArrayConfig felica_system_array_cfg;
|
|
|
|
void felica_system_init(FelicaSystem* system);
|
|
void felica_system_reset(FelicaSystem* system);
|
|
void felica_system_copy(FelicaSystem* system, const FelicaSystem* other);
|