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.

CC2530 OTA怎么实现呢。操作流程是什么。



我按官方的文档操作,到最后 结构体没有找到定义。报错。

#pragma location="CRC"
const  CODE otaCrc_t OTA_CRC =
{   0xFFFF,        // CRC
  0xFFFF,        // CRC Shadow
};
#pragma required=OTA_CRC
 
#pragma location="PREAMBLE"
const  CODE preamble_t OTA_Preamble =
{
  0xFFFFFFFF,           // Program Length
  OTA_MANUFACTURER_ID,  // Manufacturer ID
  OTA_TYPE_ID,          // Image Type
  0x00000003            // Image Version
};
#pragma required=OTA_Preamble

 

这些配置是说把自己的应用程序工程配置成OTA开启吗。接电脑端的是烧写哪个工程呢。连这些都没说清楚