app_one_wire.h 399 B

12345678910111213141516171819202122232425262728
  1. #ifndef __app_one_wire_h__
  2. #define __app_one_wire_h__
  3. typedef void (*_Event)(unsigned char*,int);
  4. void chargerpin_one_ms_init(_Event success_evt);
  5. void chargerpin_one_ms_pcs(void *t);
  6. void chargerpin_one_ms_uninit(void);
  7. void one_byte_receive_pcs(void*t);
  8. void one_byte_receive_init(unsigned char *recbuff,unsigned short len,_Event evt);
  9. void one_byte_receive_uninit(void);
  10. #endif