Dear all,
I recently ordered a CC3100 boosterpack for my TM4C123GXL launchpad. I dont have a CC3100EMU board, so I am trying the basic examples as I found on Prof Valvano's page (users.ece.utexas.edu/~valvano/arm/wirelessconnectivity.html).
The example, asks to keep the folder in TivaWare/examples/boards/cc3100 ..and I did as followed.
When trying to compile the uVision Project, I am not able to get rid of two errors.
"Invalid redeclaration of type name UINT32" & "Invalid redeclaration of type name INT32".
I understand, that this might be doe to double declaration of these macros. On digging deeper into the error. One declaration exists in stdint.h and other in simplelink/include/source/datatypes.h (files required for CC3100)
I tried commenting the declarations in each of the files separately, but that resulted in more errors in other files, as its a multi-file project.
Then perhaps you need to review/change more of the source, and understand the nature of the errors being thrown.
Perhaps you need to CHANGE the definition to one that is workable rather than comment out the lines/definitions.
If you can't separate it at a project level (source files), consider if you can split out some of the stuff into it's own project/library, and link that against your other code.