diff --git a/fifofast.cproj b/fifofast.cproj index 89780d1..e954885 100644 --- a/fifofast.cproj +++ b/fifofast.cproj @@ -88,36 +88,36 @@ - -mmcu=atmega328p -B "%24(PackRepoDir)\atmel\ATmega_DFP\1.0.90\gcc\dev\atmega328p" - True - True - True - True - False - True - True - - - DEBUG - - - - - %24(PackRepoDir)\atmel\ATmega_DFP\1.0.90\include - - - Optimize (-O1) - True - True - Default (-g2) - True - - - libm - - - Default (-Wa,-g) - + -mmcu=atmega328p -B "%24(PackRepoDir)\atmel\ATmega_DFP\1.0.90\gcc\dev\atmega328p" + True + True + True + True + False + True + True + + + DEBUG + + + + + %24(PackRepoDir)\atmel\ATmega_DFP\1.0.90\include + + + Optimize (-O1) + True + True + Default (-g2) + True + + + libm + + + Default (-Wa,-g) + diff --git a/fifofast.h b/fifofast.h index cbe421e..b086c87 100644 --- a/fifofast.h +++ b/fifofast.h @@ -25,7 +25,8 @@ #ifndef FIFOFAST_H_ #define FIFOFAST_H_ -#include +#include // required for data types (uint8_t, uint16_t, ...) +#include // required for "NULL" // include required macros // by default, the project's macros will be used, they have to be located at: @@ -49,7 +50,7 @@ // version numbering is based on "Semantic Versioning 2.0.0" (semver.org) #define FIFOFAST_VERSION_MAJOR 0 #define FIFOFAST_VERSION_MINOR 3 -#define FIFOFAST_VERSION_PATCH 3 +#define FIFOFAST_VERSION_PATCH 4 #define FIFOFAST_VERSION_SUFFIX #define FIFOFAST_VERSION_META diff --git a/fifofast_demo.c b/fifofast_demo.c index b75b3b5..d4bd27b 100644 --- a/fifofast_demo.c +++ b/fifofast_demo.c @@ -9,7 +9,6 @@ * and inspect the step-by-step changes with the debugger. */ -#include #include "fifofast.h" // all declarations CAN be moved into a seperate header file just like any oother declaration