cmos Reference
File
core/xeos/include/xeos/hal/cmos.h
 
Date
Wednesday, June 25, 2014
 
 
Tasks
XEOS_HAL_CMOS_Read
Reads data from CMOS
void XEOS_HAL_CMOS_Read(
    uint8_t *bytes,
    uint8_t length );  
Parameters
- bytes
The bytes buffer 
- length
The number of bytes to read 
 
XEOS_HAL_CMOS_Write
Writes data from CMOS
void XEOS_HAL_CMOS_Write(
    uint8_t *bytes,
    uint8_t length );  
Parameters
- bytes
The bytes buffer 
- length
The number of bytes to write 
 
Types
XEOS_HAL_CMOS_Register
CMOS register
 
typedef enum { 
    XEOS_HAL_CMOS_RegisterAddress = 0x70, 
    XEOS_HAL_CMOS_RegisterData = 0x71 
} XEOS_HAL_CMOS_Register;  
Constants
- XEOS_HAL_CMOS_RegisterAddress
Address register 
- XEOS_HAL_CMOS_RegisterData
Data register 
 
Macros
__XEOS_HAL_CMOS_H__
#define __XEOS_HAL_CMOS_H__