File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ int fota_set_interval(int hours);
79
79
int fota_get_interval (void );
80
80
81
81
/**
82
- * @defgroup APPFOTA
82
+ * @defgroup APPFOTA FOTA Interface
83
+ *
83
84
* @brief These functions are used to update application firmware
84
85
* from external source. User can write their own update interface
85
86
* and use these function to interface with low level firmware update.
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ enum data_mode_e {
33
33
struct sdmmc_cfg_t {
34
34
uint8_t card_type ; /**< Card type @ref cardtype_e */
35
35
uint8_t data_mode ; /**< Data mode @ref data_mode_e */
36
+ uint32_t reserved ; /**< Reserved, keep as 0 */
37
+ uint32_t reserved1 ; /**< Reserved, keep as 0 */
36
38
};
37
39
38
40
/**
@@ -46,7 +48,7 @@ struct sdmmc_cfg_t {
46
48
*
47
49
* @note Only supported on 4G Modules
48
50
*
49
- * @param type card type @ref cardtype_e
51
+ * @param cfg SDMMC Configuration @ref sdmmc_cfg_t
50
52
* @return 0 on success, negative on error
51
53
*/
52
54
int sdmmc_mount (struct sdmmc_cfg_t * cfg );
Original file line number Diff line number Diff line change @@ -130,6 +130,16 @@ void system_gettz(char *tz, int size);
130
130
*/
131
131
int system_set_reboot_callback (reboot_confirm_callback_f callback );
132
132
133
+ #ifdef SOC_RDA8955
134
+ /**
135
+ * Set debug() out on RDA8955 debug trace port.
136
+ * default is off
137
+ * @param en [in] true to enable, false to disable
138
+ * @return 0 on success, -ve for error
139
+ */
140
+ int system_set_debug_trace (int en );
141
+ #endif
142
+
133
143
/**
134
144
* Debug printf with debug level.
135
145
*
Original file line number Diff line number Diff line change 101
101
typedef uint8_t sa_family_t ;
102
102
#endif
103
103
104
- #if !defined(socklen_t ) && !defined(SOCKLEN_T_DEFINED )
104
+ #if !defined(socklen_t ) && !defined(__socklen_t_defined ) && !defined( SOCKLEN_T_DEFINED )
105
105
typedef uint32_t socklen_t ;
106
106
#endif
107
107
You can’t perform that action at this time.
0 commit comments