| 123456789101112131415161718 |
- #include <datetime.h>
- #include <stdbool.h>
- #include <furi.h>
- #define SUICA_MAX_HISTORY_ENTRIES 0x15
- typedef enum {
- SuicaHistoryNull,
- SuicaHistoryBus,
- SuicaHistoryPosAndTaxi,
- SuicaHistoryVendingMachine,
- SuicaHistoryHappyBirthday,
- SuicaHistoryTrain
- } SuicaHistoryType;
- typedef struct {
- View* view_history;
- FuriTimer* timer;
- } SuicaContext;
|