??? 06/08/10 05:05 Read: times |
#176504 - ReDef Responding to: ???'s previous message |
Murray:
You should try to handle this at the include file level. Either put your SFR definitions all in one include file and then protect that whole file by bracketing it with the typically recommended sequence: #ifdef MY_SFR_DEFS_H #define MY_SFR_DEFS_H . . . . . . #endif /* MY_SFR_DEFS_H */ or you could do a subset of the SFRs for specific functional groupings and handle in like manner. Michael Karas |