database.h 375 B

12345678910111213141516171819202122
  1. #ifndef __DATABASE_H
  2. #define __DATABASE_H
  3. #include "main.h"
  4. void Database_init(uint16_t pushSize1, uint16_t pullSize1 ,uint16_t pushSize2, uint16_t pullSize2);
  5. void Database_Push_Loc(uint16_t pushArr[], uint16_t len);
  6. void Database_Pull_Loc(uint16_t pullArr[], uint16_t len);
  7. extern bool repeatFlag;
  8. void testLoc(void);
  9. void testEve(void);
  10. #endif /*__DATABASE_H*/