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.

CC2652R zed_switch_ota IAR编译固件运行不了



测试,在系统启动之后LED灯闪烁一下:

zed_switch_ota.zip

  • 你需要添加BIM工程以及有外部falsh,支持的型号为:
    // Supported flash devices
    static const ExtFlashInfo_t flashInfo[] =
    {
    {
    .manfId = 0xC2, // Macronics MX25R1635F
    .devId = 0x15,
    .deviceSize = 0x200000 // 2 MByte (16 Mbit)
    },
    {
    .manfId = 0xC2, // Macronics MX25R8035F
    .devId = 0x14, //
    .deviceSize = 0x100000 // 1 MByte (8 Mbit)
    },
    {
    .manfId = 0xEF, // WinBond W25X40CL
    .devId = 0x12,
    .deviceSize = 0x080000 // 512 KByte (4 Mbit)
    },
    {
    .manfId = 0xEF, // WinBond W25X20CL
    .devId = 0x11,
    .deviceSize = 0x040000 // 256 KByte (2 Mbit)
    },
    {
    .manfId = 0x0,
    .devId = 0x0,
    .deviceSize = 0x0
    }
    };