AT指令時經常用到 c語言庫函式

2021-10-23 07:43:42 字數 674 閱讀 3135

1:查詢對應的字串

char

*p_data =null;

//找到"+test_rxlora" 這個首位址

p_data =

strstr((

const

char

*)re_data,

"+test_rxlora");

//查詢十進位制數值(int *)&lora_rssi[rssi_cnt])if(

sscanf

(p_data,

"+test_rxlora:%d:",(

int*

)&lora_rssi[rssi_cnt]

))

2: 字串轉十六進製制

如:「112233」 0x11 0x22 0x33

static

char

*mem_strtoehx

(const

char

*in_str,

char

*out_hex,

int len)

return out_hex;

}

可以加入qq群:687360507

與大夥溝通交流,技術在於分享而進步

使用Linux時經常用到的指令

1.複製 cp 原目標檔案路徑 檔名 目標路徑 cp r 源目錄 目標目錄 2.cd cd 返回上一級目錄 cd 返回上兩級目錄 cd 進入根目錄 cd 返回進入此目錄之前所在的目錄 3.顯示程序 ps ef grep tomcat grep是搜尋的意思 ps ef 顯示所有程序 4.殺死程序 ki...

使用odoo時經常用到的屬性

隱藏字段 在某種條件下隱藏 隱藏標籤 唯讀readonly 條件域 設定值eval 表單傳值context 以default 開始代表直接賦值過去 amany2one小部件 預設 one2many樹 name basic incidentals mode tree nolabel 1 create ...

經常用到的GIT指令

git把本地專案推送到遠端倉庫 一 git init 初始化git專案 二 git add all 把所有檔案放到git倉庫裡面 三 git commit m 更新描述 新增更新描述 四 git remote add origin http www.123.com 連線遠端倉庫,http www.1...