diff --git a/examples/src/AdcModel.c b/examples/src/AdcModel.c index cf13ac2..4db67e3 100644 --- a/examples/src/AdcModel.c +++ b/examples/src/AdcModel.c @@ -17,10 +17,12 @@ void AdcModel_ProcessInput(uint16 millivolts) bool AdcModel_DoNothingExceptTestASpecialType(EXAMPLE_STRUCT_T ExampleStruct) { //This doesn't really do anything. it's only here to make sure I can compare a struct. + return FALSE; } bool AdModel_DoNothingExceptTestPointers(uint32* pExample) { //This doesn't really do anything. it's only here to make sure I can compare a pointer value. + return FALSE; } EXAMPLE_STRUCT_T AdcModel_DoNothingExceptReturnASpecialType(void) diff --git a/examples/src/Types.h b/examples/src/Types.h index d5508b7..2e5c2e6 100644 --- a/examples/src/Types.h +++ b/examples/src/Types.h @@ -2,6 +2,7 @@ #define _MYTYPES_H_ #include "AT91SAM7X256.h" +#include #ifndef __monitor #define __monitor