sga500e_sm.h 299 B

1234567891011121314151617181920
  1. #ifndef __SGA500E_SM_H__
  2. #define __SGA500E_SM_H__
  3. enum sga500e_err_t{
  4. SGA500EERR_NONE = 0,
  5. // launch
  6. SGA500EERR_LAUNCH_COMMERR,
  7. // err
  8. SGA500EERR_ERR_COMMERR,
  9. // ready
  10. SGA500EERR_READY_COMMERR,
  11. };
  12. void sga500e_sm( int idx );
  13. int sga500e_sm_init(int idx);
  14. #endif