ccci_support.h 555 B

12345678910111213141516171819
  1. #ifndef __CCCI_SUPPORT_H__
  2. #define __CCCI_SUPPORT_H__
  3. #include "ccci_core.h"
  4. #include "ccci_debug.h"
  5. struct ccci_setting {
  6. int sim_mode;
  7. int slot1_mode; /* 0:CDMA 1:GSM 2:WCDMA 3:TDCDMA */
  8. int slot2_mode; /* 0:CDMA 1:GSM 2:WCDMA 3:TDCDMA */
  9. };
  10. void ccci_config_modem(struct ccci_modem *md);
  11. void ccci_reload_md_type(struct ccci_modem *md, int type);
  12. int ccci_get_sim_switch_mode(void);
  13. int ccci_store_sim_switch_mode(struct ccci_modem *md, int simmode);
  14. struct ccci_setting *ccci_get_common_setting(int md_id);
  15. #endif /* __CCCI_SUPPORT_H__ */