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?