i am new in AUTOSAR and embedded system my project defined variable along with memmap as part autosar standard as below
#define ABC_START_SEC_VAR_CLEARED_BOOLEAN
#include "abc_MemMap.h"
boolean var1_b;
boolean var2_b;
#define ABC_STOP_SEC_VAR_CLEARED_BOOLEAN
#include "abc_MemMap.h"
-> var1_b and var2_b will be arrange into specific memory so if someone did the mistake as below
boolean var1_b;
boolean var2_b;
they forgot include ABC_START_SEC_VAR_CLEARED_BOOLEAN and STOP and when i do the build -> NO ERROR happen so what do you think about this point ?
where will var1 and var2 be arrange in Memory ? and do u have any way to detect this point because the build is pass and compiler cant recognize this ERROR
thank you