added python tool inital version

This commit is contained in:
2026-02-25 10:09:17 +01:00
parent 288b1e45ef
commit 80c0e825a7
26 changed files with 369 additions and 0 deletions

10
firmware/src/fs.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef FS_H
#define FS_H
#include <zephyr/fs/fs.h>
/**
* @brief Initializes the filesystem by mounting it
*/
int fs_init(void);
#endif // FS_H