2014-08-29 07:52:33 -07:00
|
|
|
/*
|
|
|
|
* @file mmc_card.h
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @date Dec 30, 2013
|
|
|
|
* @author Kot_dnz
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MMC_CARD_H_
|
|
|
|
#define MMC_CARD_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
void initMmcCard(void);
|
|
|
|
bool isSdCardAlive(void);
|
2014-09-11 06:02:51 -07:00
|
|
|
void appendToLog(const char *line);
|
2014-08-29 07:52:33 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* MMC_CARD_H_ */
|