Go to the documentation of this file.
50 #define PARAM_SETSTATE(State) ((State==RESET) || (State==SET))
56 #define PARAM_FUNCTIONALSTATE(State) ((State==DISABLE) || (State==ENABLE))
75 typedef void (*
PFV)();
78 typedef int32_t(*
PFI)();
96 #define _BIT(n) (1<<n)
104 #define _SBF(f,v) (v<<f)
121 #define _BITMASK(field_width) ( _BIT(field_width) - 1)
125 #define NULL ((void*) 0)
129 #define NELEMENTS(array) (sizeof (array) / sizeof (array[0]))
132 #define STATIC static
134 #define EXTERN extern
136 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
137 #define MIN(a, b) (((a) < (b)) ? (a) : (b))