I am using code compose studio to write a program for a Lauchpad tiva c series(tm4c123glx).
I have add some new headers and source files. When i try to include headers to the .c file all goes well. I can include <stdint.h> etc. When i use ctl+space to see the available header there is a list that opens normally.
When i try to do this at header file in order to include stdint.h or stdbool.h i do not get autocomplete list. If i type the header my own and compile the errors go away and i do not get any compile error but i think that this should not happen.
I have the files in a seperated folder that is included at tha include paths for the compiler.I also tried to place the files at the same lavel as main.c but nothing changed.
Also in one header i have implemented a struct and declared a member of it like
struct NameOfthestructType{
listofvariables
}
struct NameOfthestructType myStruct;
but i can not find it in the source file.It does not give me the choice. I have included the header file at the beginning of the source file.
Any help plz?