mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 19:46:54 +03:00
* SD card basic RW check + folder structure check * Default LED blink repeat 2x * Abort booting when SD basic R/W check failed * SD R/W error+missing folder,file > load reduced UI
12 lines
258 B
C
12 lines
258 B
C
#pragma once
|
|
|
|
#ifndef COMPONENTS_HELPER_SDCARD_CHECK_H
|
|
#define COMPONENTS_HELPER_SDCARD_CHECK_H
|
|
|
|
#include "../../include/defines.h"
|
|
|
|
int SDCardCheckRW(void);
|
|
bool SDCardCheckFolderFilePresence(void);
|
|
|
|
#endif /* COMPONENTS_HELPER_SDCARD_CHECK_H */
|