I have a C2000 Experimenters' Kit with an F28069 card. I also have controlSUITE. There certainly is some impressive code contained and there are libraries to make this thing do just about anything a person could wish.
As a part of my learning process, I am attempting to boil things down to a minimum level. I am attempting to write a simple "blink the LED" example that just toggles two pins on the board. I have managed to narrow down my include to just F2806x_Device.h, which sets up the GpioCtrlRegs to configure the pins. Now when I compile, though, I have _GpioCtrlRegs as an undefined symbol in the linking phase. My assumption is that I need to direct my project to the appropriate library.
The difficulty is, I can't figure out which one. Rather than just using the shotgun approach that the controlSUITE examples use, I figure I should be able to include ONE library which should define the registers dealing with setting up the GPIO's. I have tried grepping through the controlSUITE directories to locate the library which provides this symbol, in particular, and I have been unsuccessful in locating it.
Surely somebody can tell me which library handles this basic function and needs to be included in order to successfully compile this project.