Tool/software: TI C/C++ Compiler
Hi,
I'm trying to get my MSP430 code compiled inside of a docker image. I've made good progress...I'm pulling down the MSP430 compiler and library and then attempting to build my code using the MSP430 compiler.
I get most of the way through my code, but I'm getting an error on the following lines:
`__bic_SR_register(GIE);`
`__bis_SR_register(GIE);`
I'm getting the same error about 4 times throughout the code. The error just says, `error #18: expected a ")"` and that's it. I'm not sure if the problem is related to the __bic_SR_register() or the GIE. Both of those appear on all the lines in question.
I've done some digging around in the compiler source code and I verified the intrinsics.h file exists in there, although I did not rebuild the compiler at all (I'm using the cl430 compiler).
Any help would be appreciated!