mirror of
https://github.com/dexterbg/Twizy-Cfg.git
synced 2024-11-08 11:45:42 +00:00
57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
/**
|
|
* ==========================================================================
|
|
* Twizy/SEVCON configuration shell
|
|
* ==========================================================================
|
|
*
|
|
* Utilities
|
|
*
|
|
* Based on the OVMS:
|
|
* https://github.com/openvehicles/Open-Vehicle-Monitoring-System
|
|
*
|
|
* License:
|
|
* This is free software.
|
|
* This is a modified copy of the OVMS general utils, so the OVMS license applies:
|
|
* https://github.com/openvehicles/Open-Vehicle-Monitoring-System/blob/master/LICENSE
|
|
*
|
|
*/
|
|
|
|
#ifndef _utils_h
|
|
#define _utils_h
|
|
|
|
|
|
// Type shortcuts:
|
|
|
|
typedef unsigned char UINT8;
|
|
typedef unsigned int UINT;
|
|
typedef unsigned int WORD;
|
|
typedef unsigned long UINT32;
|
|
|
|
typedef signed char INT8;
|
|
|
|
typedef byte BYTE;
|
|
typedef bool BOOL;
|
|
#define TRUE true
|
|
#define FALSE false
|
|
|
|
|
|
// Useful macros:
|
|
|
|
#define SQR(n) ((n)*(n))
|
|
#define ABS(n) (((n) < 0) ? -(n) : (n))
|
|
#define MIN(n,m) ((n) < (m) ? (n) : (m))
|
|
#define MAX(n,m) ((n) > (m) ? (n) : (m))
|
|
#define LIMIT_MIN(n,lim) ((n) < (lim) ? (lim) : (n))
|
|
#define LIMIT_MAX(n,lim) ((n) > (lim) ? (lim) : (n))
|
|
|
|
#define delay5(n) delay(5*(n))
|
|
#define delay100(n) delay(100*(n))
|
|
#define CHECKPOINT(n) ;
|
|
|
|
|
|
// PROGMEM string helpers:
|
|
#define FLASHSTRING const __FlashStringHelper
|
|
#define FS(x) (__FlashStringHelper*)(x)
|
|
|
|
|
|
#endif // _utils_h
|
|
|