Debugging.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12737 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-04-14 06:08:16 +00:00
parent b542165221
commit 00c71fb05a
2 changed files with 3 additions and 0 deletions

View File

@ -117,6 +117,8 @@ extern "C" {
#endif
void eflInit(void);
void eflObjectInit(EFlashDriver *eflp);
void eflStart(EFlashDriver *eflp, const EFlashConfig *config);
void eflStop(EFlashDriver *eflp);
#ifdef __cplusplus
}
#endif

View File

@ -79,6 +79,7 @@ void eflInit(void) {
void eflObjectInit(EFlashDriver *eflp) {
eflp->vmt = &vmt;
eflp->state = FLASH_STOP;
}
/**