We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello everyboy,
I tried to include a .h file in my scatter file using the armcc -E option. Including a header file, that contains nothing but makros allready works, but i cannot include a header, containing function declaration or includes like stdint.h (i think because they also contain non makro code), getting a bunch of errors like:
error: L6292E: Ignoring unknown attribute 'signed' specified for region typedef. error: L6292E: Ignoring unknown attribute 'short' specified for region typedef.
I think they occur cause pre-processor inlines all includes and the scatter file cannot handle the c Syntax of included files. Is there any way to still include these header files, or can only makros be included into my scatterfile.
PS.: The reason i want to include the headerfiles with "real" c syntax is to increase the readability, i dont want anybody to browse 3-4 headerfiles to get all the information needed