This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS570LS0232: TI FEE: MemMap.h includes

Part Number: TMS570LS0232
Other Parts Discussed in Thread: ASH

In the ti_fee*.c files, MemMap is included twice: 

 #define FEE_START_SEC_CONST_UNSPECIFIED

#include "MemMap.h" 

/*

....

*/

#define FEE_STOP_SEC_CONST_UNSPECIFIED

#include "MemMap.h"

However, in MemMap.h:

#define __MEM_MAP_H__

 is never undefined. The header guards will prevent MemMap.h be included again - thus the second include has no effect.

Can this be fixed/the second include removed?