12345678910111213141516171819202122 |
- #ifndef __DATABASE_H
- #define __DATABASE_H
- #include "main.h"
- void Database_init(uint16_t pushSize1, uint16_t pullSize1 ,uint16_t pushSize2, uint16_t pullSize2);
- void Database_Push_Loc(uint16_t pushArr[], uint16_t len);
- void Database_Pull_Loc(uint16_t pullArr[], uint16_t len);
- extern bool repeatFlag;
- void testLoc(void);
- void testEve(void);
- #endif /*__DATABASE_H*/
|