This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Bluetooth Low Energy + TI Drivers

我使用Bluetooth Low Energy + TI Drivers在任務4遇到問題

我把extern uint32_t myData;加到simple_peripheral.c最頂部
在SimplePeripheral_init()函數裡增加
uint8_t myData_DataVal[MYDATA_DATA_LEN] = {0};
MyData_SetParameter(MYDATA_DATA_ID, MYDATA_DATA_LEN,myData_DataValue);


在SimplePeripheral_performPeriodicTask()函數下增加
MyData_SetParameter(MYDATA_DATA_ID, MYDATA_DATA_LEN, &myData);
卻出現下面錯誤

../Application/simple_peripheral.c", line 53: error #20: identifier "uint32_t" is undefined
"../Application/simple_peripheral.c", line 606: error #20: identifier "myData_DataValue" is undefined

請問我是哪個步驟搞錯了嗎?請問名稱會不同要怎麼看?