02-03-2010, 03:54 PM
Hi,
My header files all include #ifndef / #define 's to stop them being included twice, however apparently the name is bad.
i have things like
#ifndef __DMA_h
#define __DMA_h
#endif
and
#ifndef __flash_h
#define __flash_h
#endif
Also changing to the following gives the same error
#ifndef flash_h
#define flash_h
#endif
any help would be great,
Matt
My header files all include #ifndef / #define 's to stop them being included twice, however apparently the name is bad.
i have things like
#ifndef __DMA_h
#define __DMA_h
#endif
and
#ifndef __flash_h
#define __flash_h
#endif
Also changing to the following gives the same error
#ifndef flash_h
#define flash_h
#endif
any help would be great,
Matt
<t></t>