Part Number: EK-TM4C123GXL
Other Parts Discussed in Thread: TM4C123GH6PM
Tool/software: Code Composer Studio
Is CSS Cloud just a basic CSS demo or can it be a real programming tool? I'm trying to use it but not having much luck.
For example, I can't find the include files in CCS Cloud. Which ones are available and where are they located?
I'm trying to create a program that requires the following include file.
#include "tm4c123gh6pm.h"
Since I can't find include files in CCS Cloud I typed the above include statement directly into my test program. But when I compile the program CCS Studio says it can't find it.
Here's my entire program. How do I run this in CSS Cloud?
================================================================
#include "tm4c123gh6pm.h"
/**
* main.c
*/
int main(void)
{
SYSCTL_RCC_R |= 0x02400540; // System Clock Settings
return 0;
}
================================================================
Finally, how can I view the "tm4c123gh6pm.h" file in CSS Cloud?
thanks!




