#define EZI2C_SIZE (sizeof(ezi2cBuffer))
typedef struct
{
uint16 reload; /* EZI2C counter reload value: read/write */
uint8 leds; /* LEDs control bits: read only */
} __attribute__ ((packed)) EZI2C_DATASTRUCT;
EZI2C_DATASTRUCT ezi2cBuffer = {RELOAD_INIT, 0};
|