Part Number: MSP-CGT
Tool/software: Code Composer Studio
Hi,
This issue isn't actually fixed in general. The specific case I provide was resolved, but if you clear the same bit pattern from two (or more) bytes then the same de-optimisation occurs…
Part Number: MSP-CGT
Tool/software: Code Composer Studio
Given the following function:
extern unsigned char src, dst;
void func(void)
{
dst &= ~src;
}
The CGT compiler produces the following output:
;**************************************…
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: 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:
;***…
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…
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…
Hi Xiaorui,
The CCE is not supported any more and there is not available download link for it.
The issue you meet (The code size exceeds available flash memory) looks more related to compiler version and option.
You could try to download and use…
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…