dtsd1352_sm.h 312 B

1234567891011121314151617181920
  1. #ifndef __DTSD1352_SM_H__
  2. #define __DTSD1352_SM_H__
  3. enum dtsd1352_err_t{
  4. DTSD1352ERR_NONE = 0,
  5. // launch
  6. DTSD1352ERR_LAUNCH_COMMERR,
  7. // ready
  8. DTSD1352ERR_READY_COMMERR,
  9. // err
  10. DTSD1352ERR_ERR_COMMERR,
  11. };
  12. int dtsd1352_sm_init(int idx);
  13. void dtsd1352_sm( int idx );
  14. #endif