Other Parts Discussed in Thread: CC3200MOD, CC3200SDK, CC3200
hello
i am using tcp_socket example as a platforme for my own app and it worked ok
i want to copy a file to the cc3200mod usingthe tftp example into tcp_socket
so i copied the relevant code and the includes but i am still getting an "#41 expected an identifier" in osi.h
Description Resource Path Location Type
#41 expected an identifier .ccsproject /tcp_socket line 59, external location: C:\ti\CC3200SDK_1.1.0\cc3200-sdk\oslib\osi.h C/C++ Problem
typedef enum
{
OSI_OK = 0,
OSI_FAILURE = -1,
OSI_OPERATION_FAILED = -2,
OSI_ABORTED = -3,
OSI_INVALID_PARAMS = -4,
OSI_MEMORY_ALLOCATION_FAILURE = -5,
OSI_TIMEOUT = -6,
OSI_EVENTS_IN_USE = -7,
OSI_EVENT_OPEARTION_FAILURE = -8
}OsiReturnVal_e;
however when i build the originak tftp example it is built ok (its the same osi.h)
what is the problem?