45 lines
975 B
C
45 lines
975 B
C
|
#ifndef __U8G_PORT_H__
|
||
|
#define __U8G_PORT_H__
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <rtdevice.h>
|
||
|
|
||
|
#define U8X8_USE_PINS
|
||
|
#include <u8x8.h>
|
||
|
#include <u8g2.h>
|
||
|
|
||
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
|
||
|
#define U8X8_USE_PINS
|
||
|
|
||
|
#define U8G2_USE_HW_I2C
|
||
|
#define U8G2_USE_HW_SPI
|
||
|
|
||
|
#if defined U8G2_USE_HW_SPI
|
||
|
#include <drv_spi.h>
|
||
|
|
||
|
#ifndef U8G2_SPI_BUS_NAME
|
||
|
#define U8G2_SPI_BUS_NAME "spi1"
|
||
|
#endif
|
||
|
|
||
|
#ifndef U8G2_SPI_DEVICE_NAME
|
||
|
#define U8G2_SPI_DEVICE_NAME "spi10"
|
||
|
#endif
|
||
|
|
||
|
uint8_t u8x8_byte_rt_4wire_hw_spi(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#if defined U8G2_USE_HW_I2C
|
||
|
|
||
|
#ifndef U8G2_I2C_DEVICE_NAME
|
||
|
#define U8G2_I2C_DEVICE_NAME "i2c1"
|
||
|
#endif
|
||
|
|
||
|
uint8_t u8x8_byte_rt_hw_i2c(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
uint8_t u8x8_rt_gpio_and_delay(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);
|
||
|
|
||
|
#endif /* __U8G_PORT_H__ */
|