Part Number: MSP-CGT
Tool/software: TI C/C++ Compiler
Given the following function:
#include <msp430.h>
extern unsigned char a, b;
unsigned int func(void)
{
return a | __swap_bytes(b);
}
The compiler produces the following output:
;*****…
Part Number: CCSTUDIO-MSP Hi Experts, A customer would like to use an OpenMSP430 device. With this case, the license for MSP430 is applicable? They need to confirm about the license condition in the"MSP430_RTS_20.2.0.LTS_manifest.html" and "MSP430_RTS_20_2_0_LTS_561e8470…
Part Number: MSP-CGT
Tool/software: TI C/C++ Compiler
If I have the following function:
extern unsigned short a, b;
extern unsigned long l;
void func(void)
{
l += a; l -= b;
}
The the compiler produces the following incorrect output:
;***…
Tool/software: TI C/C++ Compiler
Hi There,
is there any PC-Lint compiler specific configuration available for: ti-cgt-arm_20.2.1.LTS
ti-cgt-c2000_20.2.1.LTS
ti-cgt-msp430_20.2.1.LTS
Related to:
There seem to be some cinfigs provided…
Part Number: MSP-CGT
Tool/software: TI C/C++ Compiler
If I have the following code
extern unsigned char __heap[512];
#define mid ((void *)__heap + 256)
#define end ((void *)__heap + 512)
void func(void)
{
void *ptr = end;
do {
*(unsigned char…
Part Number: MSP-EXP430FR6989
Tool/software: TI C/C++ Compiler
The MSP430 TI CGT version listed above does not include the header file "unistd.h". However, a version can be found here: https://doc.riot-os.org/msp430__common_2include_2unistd_8h.html#details…
Part Number: TI-CGT Other Parts Discussed in Thread: MSP-CGT Tool/software: Hello,
I can't get the linker to generate a CRC table for a compressed section with different run and load addresses.
In my linker file I have:
.custom.data : {} LOAD=FLASH…
Could someone please post the DefectHistory.txt for MSP CGT 4.1.3? Or point to where they are on a TI website? I'd like to see them before updating.
Thanks.
Kenley said: They tried to import it to CCS (Ver.12.7.1.00001), but it cannot be imported due to the following error.
This project has a dependency on the MSP430 20.12.0 compiler. Please make sure it is installed and detected by CCS.
You can obtain…
Hi,
It might related to what complier version you are using. Have you tried with the latest MSP-CGT v 21.6.0.LTS https://www.ti.com/tool/MSP-CGT
And for the NOINIT and PERSISTENT, they are pretty similar, and can both prevent such variables from being…