drv_soft_i2c.h 1.6 KB
Newer Older
1
/*
mysterywolf's avatar
mysterywolf 已提交
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
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
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2019-03-22     balanceTWK   first version
 */

#ifndef __DRV_SOFT_I2C__
#define __DRV_SOFT_I2C__

#include <rtthread.h>
#include <rthw.h>
#include <rtdevice.h>

/* w60x config class */
struct w60x_soft_i2c_config
{
    rt_uint8_t scl;
    rt_uint8_t sda;
    const char *bus_name;
};
/* w60x i2c dirver class */
struct w60x_i2c
{
    struct rt_i2c_bit_ops ops;
    struct rt_i2c_bus_device i2c2_bus;
};

#ifdef BSP_USING_SOFT_I2C1
#define I2C1_BUS_CONFIG                                  \
    {                                                    \
        .scl = SOFT_I2C1_SCL_PIN,                        \
        .sda = SOFT_I2C1_SDA_PIN,                        \
        .bus_name = "i2c1soft",                          \
    }
#endif

#ifdef BSP_USING_SOFT_I2C2
#define I2C2_BUS_CONFIG                                  \
    {                                                    \
        .scl = SOFT_I2C2_SCL_PIN,                        \
        .sda = SOFT_I2C2_SDA_PIN,                        \
        .bus_name = "i2c2soft",                          \
    }
#endif

#ifdef BSP_USING_SOFT_I2C3
#define I2C3_BUS_CONFIG                                  \
    {                                                    \
        .scl = SOFT_I2C3_SCL_PIN,                        \
        .sda = SOFT_I2C3_SDA_PIN,                        \
        .bus_name = "i2c3soft",                          \
    }
#endif

int rt_hw_i2c_init(void);

#endif