如何在字符串內帶入變數
下列是即將寫入的資料const uint8_t writeData__attribute__((aligned(16))) =
" DATE : 變數 \n\r "
變數是數字會依照某個計數器增加 简单点用 sprintf () 函数,复杂点就自己写函数。
不过 uint8_t 是个什么东东?宽字符?
char buffer ;
const char * prompt = "hello,world ,%s = %d ,\n\r";
int a = 12345;
const char * str = "horse horse tiger tiger";
sprintf(buffer,prompt,str,a);
printf("%s",buffer);
因為我要把資料寫入文件內但是不經過 command
小弟是使用 mplab x ide 進行設計
主要功能是 counter 並將 data 紀錄到U盤內
文件格式為 .txt
const uint8_t writeData__attribute__((aligned(16))) =
" DATA : 變數 \n\r "
※想請教大神 這樣的結構有辦法加入變數嗎?
页:
[1]