Other Parts Discussed in Thread: IWR1443, MMWAVE-SDK, IWR1642BOOST, IWR1642
Tool/software: Code Composer Studio
Hello,
We are using the IWR1443BOOST RevA. We modified the code to run using CAN. While building the project we do not get any errors but while debugging and uploading to the board we get an error "Verification failed: Internal error while writing 0x0001F550". I should however mention that we changed the memory allocation of Prog_RAM. Could this be the issue? If yes, how do we change the allocation such that the Prog_RAM can fit our code. This error does not occur when we run the out of the box demo with the modified memory allocation.
The original allocation is :
MEMORY{
PAGE 0:
VECTORS (X) : origin=0x00000000 length=0x00000100
PROG_RAM (RX) : origin=0x00000100 length=0x0001FF00
DATA_RAM (RW) : origin=0x08000000 length=0x00010000
L3_RAM (RW) : origin=0x51020000 length=0x00040000
HWA_RAM (RW) : origin=0x52030000 length=0x00010000
PAGE 1:
L3_RAM (RW) : origin=0x51020000 length=0x00040000
}
Modified allocation is :
MEMORY{
PAGE 0:
VECTORS (X) : origin=0x00000000 length=0x00000100
PROG_RAM (RX) : origin=0x00000100 length=0x00020F58
DATA_RAM (RW) : origin=0x08000000 length=0x00010000
L3_RAM (RW) : origin=0x51020000 length=0x00040000
HWA_RAM (RW) : origin=0x52030000 length=0x00010000
PAGE 1:
L3_RAM (RW) : origin=0x51020000 length=0x00040000
}
If it is not an issue with the memory, please suggest what else it could be.
Thanks in advance,
-Sushen