app_one_wire.h 501 B

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