tf_sm.h 277 B

123456789101112131415161718192021
  1. #ifndef TF_SM_H
  2. #define TF_SM_H
  3. enum tongfei_err_t{
  4. TFERR_NONE = 0,
  5. // launch
  6. TFERR_LAUNCH_COMMERR,
  7. // err
  8. TFERR_ERR_COMMERR,
  9. // ready
  10. TFERR_READY_COMMERR,
  11. };
  12. int tongfei_sm_init(int idx);
  13. void* tongfei_sm( int idx );
  14. #endif /* TF_SM_H */