osal_snv_write( BLE_NVID_USER_ID_START,sizeof(Device_Info),&Device_Info)
tmos_snv_read( BLE_NVID_USER_ID_START,sizeof(Device_Info),&Device_Info);
//這兩個(gè)函數(shù)只有tmos_snv_read有對(duì)應(yīng)的,另外一個(gè)write找不到,并且BLE_NVID_USER_ID_START也不知道用哪個(gè)替換,望指教怎么實(shí)現(xiàn)。
//uint8 *deviceNameUpdate = osal_mem_alloc(Device_Info.namelen);
uint8 *deviceNameUpdate =tmos_msg_allocate(Device_Info.namelen);
//osal_mem_free(deviceNameUpdate);
tmos_msg_deallocate(deviceNameUpdate);
//內(nèi)存的申請(qǐng)和釋放我沒有找到對(duì)應(yīng)的函數(shù)接口,這兩種替換方法是否合適,不合適望指正。