Index: firmware/App/BLCommon.h =================================================================== diff -u -r850f8042a02fd17ee53b8db24bc2e3d17bbb9c7f -rf2652e85c8676d0356fea2690cfd9cac716ca795 --- firmware/App/BLCommon.h (.../BLCommon.h) (revision 850f8042a02fd17ee53b8db24bc2e3d17bbb9c7f) +++ firmware/App/BLCommon.h (.../BLCommon.h) (revision f2652e85c8676d0356fea2690cfd9cac716ca795) @@ -10,6 +10,8 @@ #include "hal_stdtypes.h" +#include "Common.h" + // ********** version ********** /* @@ -24,18 +26,4 @@ #define BL_VERSION_MICRO 0 #define BL_VERIOSN_BUILD 0 -// **** Types **** - -typedef float F32; ///< 32-bit floating point type -typedef double F64; ///< 64-bit floating point type -typedef long long S64; ///< 64-bit signed integer type -typedef unsigned int U32; ///< 32-bit unsigned integer type -typedef int S32; ///< 32-bit signed integer type -typedef unsigned short U16; ///< 16-bit unsigned integer type -typedef short S16; ///< 16-bit signed integer type -typedef unsigned char U08; ///< 8-bit unsigned integer type -typedef unsigned int BOOL; ///< 32-bit boolean type -typedef unsigned char BYTE; ///< 8-bit byte type - - #endif