File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -36,31 +36,32 @@ int stk_status(void);
36
36
37
37
/**
38
38
* Enable/Disable SIM toolkit
39
+ * @param en 1 to enable, 0 to disable
39
40
* @return RIL return code @ref ril_rc_e
40
41
*/
41
- int stk_enable (void );
42
+ int stk_enable (int en );
42
43
43
44
/**
44
45
* @brief Get current proactive command and qualifier ID
45
46
*
46
- * @param cmd current TLK command id (@ref stk_cmd_e) (hex)
47
- * @param qual Qualifier value (hex) ( optional)
47
+ * @param cmd current TLK command id (@ref stk_cmd_e)
48
+ * @param qual Qualifier value (optional)
48
49
* @return RIL return code @ref ril_rc_e
49
50
*/
50
51
int stk_get_currcommand (uint8_t * cmd , uint8_t * qual );
51
52
52
53
/**
53
54
* Send envelope command (AT+STKENV) to open menu items
54
55
*
55
- * @param menu_id Menu ID to open (hex)
56
+ * @param menu_id Menu ID to open
56
57
* @return RIL return code @ref ril_rc_e
57
58
*/
58
59
int stk_open_menu (uint8_t menu_id );
59
60
60
61
/**
61
62
* Select menu item (AT+STKR)
62
63
*
63
- * @param item_id Item id from menu (hex)
64
+ * @param item_id Item id from menu
64
65
* @return RIL return code @ref ril_rc_e
65
66
*/
66
67
int stk_select_item (uint8_t item_id );
You can’t perform that action at this time.
0 commit comments