struct Datos //ESTRUCTURA DE DATOS PRINCIPAL
{
char Nombre [19];
int8 Dias;
int8 Turn [60][2];
int8 TurnInt [60][2];
int8 Air [60][2];
int8 AirInt [60][2];
float Temp [60];
float HistTemp [60];
float Humi [60];
float HistHumi [60];
}Variedad[25];
////////////////////////////////////////////////////////////////////////////////
//// external_eeprom.c ////
//// ////
//// Utilities to write various data types to external eeprom ////
////////////////////////////////////////////////////////////////////////////////
//// ////
//// void write_int1_ext_eeprom(address, int8 bitPosition, int1 data) ////
//// Call to write one bit of data ////
//// ////
//// int1 read_int1_ext_eeprom(address, int8 bitPosition) ////
//// Call to read one bit of data ////
//// ////
//// ////
//// void write_int16_ext_eeprom(address, int16 data) ////
//// Call to write a 16 bit integer ////
//// ////
//// int16 read_int16_ext_eeprom(address) ////
//// Call to read a 16 bit integer ////
//// ////
//// ////
//// void write_int32_ext_eeprom(address, int32 data) ////
//// Call to write a 32 bit integer ////
//// ////
//// int32 read_int32_ext_eeprom(address) ////
//// Call to read a 32 bit integer ////
//// ////
//// ////
//// void write_float_ext_eeprom(address, float data) ////
//// Call to write a floating point number ////
//// ////
//// float read_float_ext_eeprom(address) ////
//// Call to read a floating point number ////
//// ////
////////////////////////////////////////////////////////////////////////////////struct Datos //ESTRUCTURA DE DATOS PRINCIPAL
{
char Nombre [19];
int8 Dias;
int8 Turn [60][2];
int8 TurnInt [60][2];
int8 Air [60][2];
int8 AirInt [60][2];
float Temp [60];
float HistTemp [60];
float Humi [60];
float HistHumi [60];
}Variedad[25]; char Nombre [];