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.

Compiler/CC2640R2F: Bin file is still too large to be programmed(CC2640R2F SDK 1.50.00.58)

Part Number: CC2640R2F

Tool/software: TI C/C++ Compiler

Hi TI,

Now I've checked the .map and the .icf file, and they say that the actual program code size is 86.327KB(including the stack), and the RO infomation's size is 11.507KB. So the overall size is smaller than 100KB. However, the output .bin file is 281KB, and it still cannot be programmed into the 128-KB flash rom. So I wonder that how the IARBuild.exe leads to a bloated 181KB. Is there any wrong setting-up with the complier?

I'v put the .map file and the full build log here as an external link.

Thanks.

Build Log:

Link: pan.baidu.com/.../1U1bQswMjPj0VrgoxdJZ3xw Password: tc25

6545.BuildLog.txt

Memory Map:

Link: pan.baidu.com/.../1gIOF1d5L9OxW55dKG47mRQ Password: 5ydg

ble_simple_peripheral_cc2640r2lp_app_FlashROM_StackLibrary_map.txt

  • Hi,

    I don't understand your problem. Are you trying to build and program your device directly with IAR?

    Public file sharing sites are blocked on my network so I'm not able to see the build log.

    What changes have you implemented compared to the original project?
  • Thanks. (But I haven't find the correct method to place any attachment. When I was trying to post, this site blocked me) <-- That should be the external file name wrong.

    The build log says:
    IAR ELF Linker V8.11.2.13589/W32 for ARM
    Copyright 2007-2017 IAR Systems AB.
    Warning[Lt009]: Inconsistent wchar_t size
    fusion_9axis.o(libmpllib.a) and 3 other objects have wchar_t size 16 bits
    arrayUtil.o and 160 other objects have wchar_t size 32 bits

    86 327 bytes of readonly code memory
    11 507 bytes of readonly data memory
    12 216 bytes of readwrite data memory

    Errors: none
    Warnings: 1

    And it appears to be able to programmed into the 128KB CC2640R2F flash ROM, but actully it can't. Besides, the original project is 170KB after built, still cannot be programmed into the 128KB flash ROM.

    The memory map file says(a few part of it):

    *******************************************************************************
    *** PLACEMENT SUMMARY
    ***

    "P1": place in [from 0x00000000 to 0x0001ffff] { ro };

    "P2": 0x2ab4
    RWDATA 0x20000208 0x2ab4 <Block>
    RWDATA-1 0x20000208 0xff1 <Init block>

    86 327 bytes of readonly code memory
    11 507 bytes of readonly data memory
    12 216 bytes of readwrite data memory

    Errors: none
    Warnings: 1

    The readonly code memory and the readonly data memory are placed into the address 0x00000000 between 0x0001FFFF, and read/write data is placed into the address begin from 0x20000000 and 0x10000000.

  • Hi,

    Can you check whether you have any outdated global variables in tools->Configure Custom Argument Variables?

    What example project is your project based on?
  • I've checked it, but there doesn't seem to be any outdated variables. And, the original example project is:

    ti\simplelink_cc2640r2_sdk_1_50_00_58\examples\rtos\CC2640R2_LAUNCHXL\blestack\simple_peripheral

    P.S. The memory map and the whole build log are uploaded in the main post. I've found the mistake that why it was blocked to upload.

  • Hi,

    I can't see the error message in the build log you have posted.

    Are you sure the device is not successfully programmed?

    On the other hand I see 14 warning messages, related to "MPL_LOG_DEBUG" and inv_mpu_dmp_motion_driver.c. Maybe it's worth looking into these?
  • Thanks for the help.
    In XDS110 debug mode, my code is successfully programmed into the CC2640R2F with IAR. However, for factory manufacturing, the debug mode should not be used because of the program code's venture of being PIRATED.
    So, now I need the suitable way of programming, that is, using SmartRF Flash Programmer 2 to program the .bin file directly into CC2640R2F.
    There is no any ERROR message when building the .bin file as you see. But the problem is, the output volume of .bin file is too large to use SmartRF Flash Programmer 2. So far, it appears the only problem to solve.
  • Hi,

    Did you try programming the bin file?

    The file contains both the binary + some metadata (header, addresses, crcs), so it's normal that the size is larger than the device memory.
  • Yes, I've tried. And the SmartRF Flash Programmer 2 reports the error that the .bin file exceeds the 0x00000000-0x0001FFFF limit(128KB). And certainly......the programming fails.

  • Hi,

    Sorry for the confusion. Can you open the project options-> output converter and check that the output format is "Raw binary"?
  • Thank you! That appears to be working!