ad0x0_perf.h 301 B

123456789101112131415161718192021
  1. /**
  2. */
  3. //#include "main.h"
  4. #include <stdint.h>
  5. #ifndef AD0X0_PERF_H
  6. #define AD0X0_PERF_H
  7. typedef struct{
  8. uint32_t t1,idle;
  9. }ad0x0_perf_s;
  10. void ad0x0_perf_init(void);//
  11. void ad0x0_perf_tick_task(void);
  12. void ad0x0_perf_tick_idle(void);
  13. uint8_t ad0x0_get_perf(void);
  14. #endif