
Texas Instruments CC3200 CPU Support Package
This package contains project templates and system files for the Texas Instruments CC3200.
CrossWorks Version 3 Installation Instructions
- To install this support package
-
- Click the Tools > Package Manager menu option to open the package manager window.
- Right click on the Texas Instruments CC3200 CPU Support Package entry and select Install Selected Packages.
- Click Next to take you to the summary page.
- Click Next to install the package.
- Click Finish to close the package manager window.
- Click the Tools > Show Installed Packages.
- Click on the Texas Instruments CC3200 CPU Support Package link to view the package and its contents.
- To manually install this support package
-
- If you have not done so already, follow the CMSIS 4 CMSIS-CORE Support Package, CMSIS 4 CMSIS-DSP Support Package and CrossWorks Tasking Library Package installation instructions.
- Download the file CC3200.hzq using your web browser.
- Click the Tools > Manually Install Packages menu option.
- Select the file you have just downloaded to install the package.
- Click the Tools > Show Installed Packages.
- Click on the Texas Instruments CC3200 CPU Support Package link to view the package and its contents.
- To install this support package using other versions
Release Notes
3.0
- Initial Release.
Documentation
Creating CC3200 Projects
To create a new CC3200 project
- Select the File > New > New Project menu item.
- Select the appropriate Generic CC3200 from the Categories list.
- Select the required project template type from the Templates list.
- Set the required project name and location directory.
- Click OK.
To build and debug an application the runs in RAM memory
- Select the project to work on by using the Project > Set Active Project menu option.
- Select the configuration you require by using the Build > Set Active Build Configuration menu option.
- Right click on the project node in the project explorer and select the Flash placement property.
- Build the project by using the Build > Build Project menu option.
- Connect to the appropriate target in the target window.
- Download and start debugging the current project by using Debug > Start Debugging.
CC3200 Project Specifics
Stack and Heap Sizes
The default stack and heap sizes are set to be 1024 and 1024 bytes by default when a project is created.
Target Startup Code
The startup code CC3200_Startup.s is common to all CC3200_Startup processors. There are a set of preprocessor defines that configure the startup code and are documented in the startup file itself. The startup code calls out to a weak symbol SystemInit with the stack pointer set to the top of of SRAM. The SystemInit function can be used to set the CPU clock or configure any external memories prior to the C initialisation code as such it cannot access initialised static data.
Target Reset Script
The reset script CC3200_Target.js is used by the debugger to reset the target board.
CMSIS support
CMSIS header files are referenced as part of the new project setup. The Texas Instruments driverlib files are supplied.
CTL support
The file ctl_CC3200.c implements the CTL system timer using the standard Cortex-M SysTick timer. The timer is configured to interrupt at approximately a 10 millisecond rate and increment the CTL system timer by 10 to give a millisecond timer.
The CTL interrupt support functions ctl_global_interrupts_set, ctl_set_priority, ctl_unmask_isr and ctl_mask_isr are implemented in this file. The implementation uses the lowest half of the available NVIC priorities (top bit set in the priority) for CTL interrupts.