-
Notifications
You must be signed in to change notification settings - Fork 0
/
bus_i2c.h
84 lines (72 loc) · 2.75 KB
/
bus_i2c.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* Copyright (c) 2023 iammingge
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @file bus_i2c.h
* @brief I2C Bus header file
* @author iammingge
*
* DATE NAME DESCRIPTION
*
* 06-05-2023 iammingge Initial Version 1.0
* 06-14-2023 iammingge Fix bus timing and strictly follow standard timing
*
**/
#ifndef __BUS_I2C_H
#define __BUS_I2C_H
#include <stdint.h>
#include <stddef.h>
#include "hwtype.h"
/**
* @brief Acknowledge or Not Acknowledge
*/
typedef enum
{
ACK = 0U,
NACK
} I2C_RSP;
/**
* @brief Software i2c bus port (master mode)
*/
typedef struct
{
void (*holdtime)(uint8_t mult);
void (*sda_mode)(IO_MODE mode);
void (*scl_mode)(IO_MODE mode);
void (*set_scl)(uint8_t level);
void (*set_sda)(uint8_t level);
uint8_t(*get_sda)(void);
} sw_i2c_t;
/**
* @brief Software i2c bus function (master mode)
*/
void swi2c_config(sw_i2c_t *port); /* software I2C Bus Init */
void swi2c_strt(sw_i2c_t *port); /* software I2C start signal */
void swi2c_stop(sw_i2c_t *port); /* software I2C stop signal */
void swi2c_reset(sw_i2c_t *port); /* software I2C bus reset */
I2C_RSP swi2c_wbyte(sw_i2c_t *port, uint8_t byte); /* software I2C transmit one byte data */
uint8_t swi2c_rbyte(sw_i2c_t *port, I2C_RSP ack); /* software I2C receive one byte data */
I2C_RSP swi2c_waddr(sw_i2c_t *port, uint8_t addr); /* software I2C sends the target address for transmitting data */
I2C_RSP swi2c_raddr(sw_i2c_t *port, uint8_t addr); /* software I2C sends the target address for receiving data */
/**
* @brief Hardware i2c bus port (master mode)
*/
typedef struct
{
uint8_t(*send)(uint16_t devaddr, uint8_t *pdata, uint32_t size); /* hardware I2C transmit data */
uint8_t(*recv)(uint16_t devaddr, uint8_t *pdata, uint32_t size); /* hardware I2C receive data */
uint8_t(*wmem)(uint16_t devaddr, uint16_t memaddr, uint8_t memaddrsize, uint8_t *pdata, uint32_t size); /* hardware I2C write memory */
uint8_t(*rmem)(uint16_t devaddr, uint16_t memaddr, uint8_t memaddrsize, uint8_t *pdata, uint32_t size); /* hardware I2C read memory */
} hw_i2c_t;
#endif