Refactor split main.c

This commit is contained in:
Guriy
2026-07-03 18:05:11 +03:00
parent 90abf51075
commit 81106742dd
14 changed files with 1117 additions and 987 deletions

10
Inc/storage.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef __STORAGE_H
#define __STORAGE_H
#include "main.h"
int SD_SAVE(uint16_t *pbuff);
int SD_READ(uint16_t *pbuff);
int SD_REMOVE(void);
#endif /* __STORAGE_H */