Цитата(Chestor @ Oct 24 2014, 16:17)

Или eclipse этого в принципе не умеет?
Eclipse - всего лишь очень продвинутый текстовый редактор. Вам нужно искать в другом месте - в описании вашего компилятора. Смею предположить, что вы используете avr-gcc, значит искать надо в
документации на gcc:
Цитата
-include file
Process file as if #include "file" appeared as the first line of the primary source file. However, the first directory searched for file is the preprocessor's working directory instead of the directory containing the main source file. If not found there, it is searched for in the remainder of the #include "..." search chain as normal.
If multiple -include options are given, the files are included in the order they appear on the command line.
А вот как передать эту опцию компилятору - ищите в описании Eclipse или вашего плугина (avr-eclipse?). Я пользуюсь самописными makefile и у меня все подобные опции заданы в нем.