头文件
# ifndef F4_OS_SCCB_H
# define F4_OS_SCCB_H # include "board.h" # define SCCB_ID 0X42 # define SCCB_SDA_PIN GET_PIN ( D, 7 )
# define SCCB_SCL_PIN GET_PIN ( D, 6 )
# define SCCB_READ_SDA rt_pin_read ( SCCB_SDA_PIN)
void sccb_msp_init ( void ) ; uint8_t sccb_write_reg ( uint8_t reg, uint8_t data) ; uint8_t sccb_read_reg ( uint8_t reg) ; # endif
源文件
# include "sccb.h"
# define SCCB_SCL_H rt_pin_write ( SCCB_SCL_PIN, PIN_HIGH)
# define SCCB_SCL_L rt_pin_write ( SCCB_SCL_PIN, PIN_LOW)
# define SCCB_SDA_H rt_pin_write ( SCCB_SDA_PIN, PIN_HIGH)
# define SCCB_SDA_L rt_pin_write ( SCCB_SDA_PIN, PIN_LOW)
# if 1
# define SCCB_SDA_OUT ( ) rt_pin_mode ( SCCB_SDA_PIN, PIN_MODE_OUTPUT)
# define SCCB_SDA_IN ( ) rt_pin_mode ( SCCB_SDA_PIN, PIN_MODE_INPUT_PULLUP)
# else
# define SCCB_SDA_OUT ( )
# define SCCB_SDA_IN ( ) rt_pin_mode ( SCCB_SDA_PIN, PIN_MODE_OUTPUT_OD)
# endif
static inline void sccb_delay ( ) { rt_hw_us_delay ( 50 ) ;
}
void sccb_msp_init ( void ) { SCCB_SDA_IN ( ) ; rt_pin_mode ( SCCB_SCL_PIN, PIN_MODE_OUTPUT) ; SCCB_SCL_H; SCCB_SDA_OUT ( ) ;
}
static void sccb_start ( void ) { SCCB_SDA_H; SCCB_SCL_H; sccb_delay ( ) ; SCCB_SDA_L; sccb_delay ( ) ; SCCB_SCL_L;
}
static void sccb_stop ( void ) { SCCB_SDA_L; sccb_delay ( ) ; SCCB_SCL_H; sccb_delay ( ) ; SCCB_SDA_H; sccb_delay ( ) ;
}
static void sccb_no_ack ( void ) { sccb_delay ( ) ; SCCB_SDA_H; SCCB_SCL_H; sccb_delay ( ) ; SCCB_SCL_L; sccb_delay ( ) ; SCCB_SDA_L; sccb_delay ( ) ;
}
static uint8_t sccb_write_byte ( uint8_t dat) { uint8_t j, res; for ( j = 0 ; j < 8 ; j++ ) { if ( dat & 0x80 ) SCCB_SDA_H; else SCCB_SDA_L; dat <<= 1 ; sccb_delay ( ) ; SCCB_SCL_H; sccb_delay ( ) ; SCCB_SCL_L; } SCCB_SDA_IN ( ) ; sccb_delay ( ) ; SCCB_SCL_H; sccb_delay ( ) ; if ( SCCB_READ_SDA) res = 1 ; else res = 0 ; SCCB_SCL_L; SCCB_SDA_OUT ( ) ; return res;
}
static uint8_t sccb_read_byte ( void ) { uint8_t temp = 0 , j; SCCB_SDA_IN ( ) ; for ( j = 8 ; j > 0 ; j-- ) { sccb_delay ( ) ; SCCB_SCL_H; temp = temp << 1 ; if ( SCCB_READ_SDA) temp++ ; sccb_delay ( ) ; SCCB_SCL_L; } SCCB_SDA_OUT ( ) ; return temp;
}
uint8_t sccb_write_reg ( uint8_t reg, uint8_t data) { uint8_t res = 0 ; sccb_start ( ) ; if ( sccb_write_byte ( SCCB_ID) ) res = 1 ; sccb_delay ( ) ; if ( sccb_write_byte ( reg) ) res = 1 ; sccb_delay ( ) ; if ( sccb_write_byte ( data) ) res = 1 ; sccb_stop ( ) ; return res;
}
uint8_t sccb_read_reg ( uint8_t reg) { uint8_t val = 0 ; sccb_start ( ) ; sccb_write_byte ( SCCB_ID) ; sccb_delay ( ) ; sccb_write_byte ( reg) ; sccb_delay ( ) ; sccb_stop ( ) ; sccb_delay ( ) ; sccb_start ( ) ; sccb_write_byte ( SCCB_ID | 0X01 ) ; sccb_delay ( ) ; val = sccb_read_byte ( ) ; sccb_no_ack ( ) ; sccb_stop ( ) ; return val;
}