This thread was discussed offline, but to follow-up with an update:
The RAM space in MSP430FR2475 was incorrectly defined as 4KB when it should have been 6KB.
The actual address goes from 2000h to 37FFh.
The datasheet has been updated and the linker…
Part Number: TMS570LS1224 HERCULES-F021FLASHAPI
Version: 02.01.01
Release date: 22-OCT-2014
F021 is a precompiled library. It was built using TI's code generation tools for ARM v5.1.3.
We need to update IAR compiler/linker from v7.4 to v8.5. …
Hey Barak,
Sounds like a version issue with you IAR, not something we will be much help with. Can you check for updates and update to latest IAR revisions?
I found a similar post from a while ago that pointed to some documentation from IAR for updating…
Part Number: TUSS4470 Other Parts Discussed in Thread: TDC1000 , ENERGIA Tool/software: Hi everyone,
I’m working on a project using the STM32F103RBT6 to interface with the TUSS4470. However, I’ve encountered several issues during the initialization…
Wanted to update this post regarding the second issue that was brought up. We found that if we update to IAR Embedded Workshop for ARM v8.50.1 then we can use UniFlash v6 and CCS v10 without needing to update XDS110 firmware when switching between them…
Hi,
My last update on this: I was having problems due to configPkg being compiled in the SDK directory. I suggest this is a problem with the IAR template in the latest SDK (V5.30). I have not had this issue before (previous SDK was V4.30).
The solution…
This is with Z-Stack_3.0.2 - both ZED and ZNP do not compile with IAR 10.40 - IAR 10.30 is fine.
IAR says they fixed an issue in 10.40 that I had when compiling in 10.30 from the CLI (random failing compilations), and have updated the documentation…
The SBL IAR project can be found in C:\Texas Instruments\BLE-CC254x-1.5.2.0\Projects\ble\util\SBL and there are instructions for Compiling a Project for Use with the SBL . The goal is to program the SBL and target image consecutively, after which they…
> count = ucDataCount/4 ;
Since sizeof(bkup struct)==1, this will compute count=0, and the do-loop will try to move 64K words. Try:
> count = (ucDataCount+3)/4 ;
----------------
//#pragma location="INFOA"
I suspect this is an IAR-ism, since…