Files
QDAC-firmware/libraries/zf_device/zf_device_ips200.h

211 lines
13 KiB
C
Raw Normal View History

2023-12-11 21:45:06 +08:00
/*********************************************************************************************************************
* CH32V307VCT6 Opensourec Library CH32V307VCT6 SDK
* Copyright (c) 2022 SEEKFREE
*
* CH32V307VCT6
*
* CH32V307VCT6
* GPLGNU General Public License GNU通用公共许可证
* GPL 3 GPL3.0/
*
*
*
* GPL
*
* GPL
* <https://www.gnu.org/licenses/>
*
*
* 使 GPL3.0
* libraries/doc GPL3_permission_statement.txt
* libraries LICENSE
* 使
*
* zf_device_ips200
*
* libraries/doc version
* MounRiver Studio V1.8.1
* CH32V307VCT6
* https://seekfree.taobao.com/
*
*
*
* 2022-09-15 W first version
********************************************************************************************************************/
/*********************************************************************************************************************
* 线
* ------------------------------------
*
* // 双排排针 并口两寸屏 硬件引脚
* RD zf_device_ips200.h IPS200_RD_PIN_PARALLEL8
* WR zf_device_ips200.h IPS200_WR_PIN_PARALLEL8
* RS zf_device_ips200.h IPS200_RS_PIN_PARALLEL8
* RST zf_device_ips200.h IPS200_RST_PIN_PARALLEL8
* CS zf_device_ips200.h IPS200_CS_PIN_PARALLEL8
* BL zf_device_ips200.h IPS200_BL_PIN_PARALLEL8
* D0-D7 zf_device_ips200.h IPS200_Dx_PIN_PARALLEL8
* // 单排排针 SPI 两寸屏 硬件引脚
* SCL zf_device_ips200.h IPS200_SCL_PIN_SPI
* SDA zf_device_ips200.h IPS200_SDA_PIN_SPI
* RST zf_device_ips200.h IPS200_RST_PIN_SPI
* DC zf_device_ips200.h IPS200_DC_PIN_SPI
* CS zf_device_ips200.h IPS200_CS_PIN_SPI
* BLk zf_device_ips200.h IPS200_BLk_PIN_SPI
*
* VCC 3.3V电源
* GND
* 320 * 240
* ------------------------------------
********************************************************************************************************************/
#ifndef _zf_device_ips200_h_
#define _zf_device_ips200_h_
#include "zf_common_typedef.h"
// --------------------单排两寸屏幕SPI接口引脚定义--------------------//
#define IPS200_USE_SOFT_SPI (0 ) // 默认使用硬件 SPI 方式驱动 建议使用硬件 SPI 方式驱动
#if IPS200_USE_SOFT_SPI // 这两段 颜色正常的才是正确的 颜色灰的就是没有用的
//====================================================软件 SPI 驱动====================================================
// 如果使用的是单排排针的两寸屏幕 SPI 驱动控制引脚 可以修改
#define IPS200_SOFT_SPI_DELAY (1 ) // 软件 SPI 的时钟延时周期 数值越小 SPI 通信速率越快
#define IPS200_SCL_PIN (B13) // 软件 SPI SCK 引脚
#define IPS200_SDA_PIN (B15) // 软件 SPI MOSI 引脚
//====================================================软件 SPI 驱动====================================================
#else
//====================================================硬件 SPI 驱动====================================================
// 如果使用的是单排排针的两寸屏幕 SPI 驱动控制引脚 可以修改
#define IPS200_SPI_SPEED (72 * 1000 * 1000 ) // 硬件 SPI 速率 这里设置为系统时钟二分频
#define IPS200_SPI (SPI_2 ) // 硬件 SPI 号
#define IPS200_SCL_PIN_SPI (SPI2_MAP0_SCK_B13 ) // 硬件 SPI SCK 引脚
#define IPS200_SDA_PIN_SPI (SPI2_MAP0_MOSI_B15) // 硬件 SPI MOSI 引脚
//====================================================硬件 SPI 驱动====================================================
#endif
// 如果使用的是单排排针的两寸屏幕 SPI 驱动控制引脚 可以修改
2023-12-22 15:24:39 +08:00
#define IPS200_RST_PIN_SPI (D8 ) // 液晶复位引脚定义
#define IPS200_DC_PIN_SPI (D9 ) // 液晶命令位引脚定义
#define IPS200_CS_PIN_SPI (D10 )
#define IPS200_BLk_PIN_SPI (D11 )
2023-12-11 21:45:06 +08:00
// --------------------单排两寸屏幕SPI接口引脚定义--------------------//
// --------------------双排两寸屏幕并口引脚定义--------------------//
#define IPS200_RD_PIN_PARALLEL8 (B13)
#define IPS200_WR_PIN_PARALLEL8 (B15)
#define IPS200_RS_PIN_PARALLEL8 (B7 )
#define IPS200_RST_PIN_PARALLEL8 (D7 )
#define IPS200_CS_PIN_PARALLEL8 (D4 )
#define IPS200_BL_PIN_PARALLEL8 (D0 )
//8个数据引脚必须连续 例如B0-B7,B6-B13等等。
//--------------数据端口寄存器--------------
#define IPS200_DATAPORT GPIOE
//--------------数据端口起始地址偏移--------------
#define DATA_START_NUM 0
//例D1-D8 IPS200_DATAPORT设置为GPIOD DATA_START_NUM设置为1
//例C5-C12 IPS200_DATAPORT设置为GPIOC DATA_START_NUM设置为5
// --------------------双排SPI接口两寸屏幕引脚定义--------------------//
#define IPS200_DEFAULT_DISPLAY_DIR (IPS200_PORTAIT) // 默认的显示方向
#define IPS200_DEFAULT_PENCOLOR (RGB565_RED ) // 默认的画笔颜色
#define IPS200_DEFAULT_BGCOLOR (RGB565_WHITE ) // 默认的背景颜色
#define IPS200_DEFAULT_DISPLAY_FONT (IPS200_8X16_FONT) // 默认的字体模式
// 控制语句
#define IPS200_RD(x) ((x) ? (gpio_high(IPS200_RD_PIN_PARALLEL8)) : (gpio_low(IPS200_RD_PIN_PARALLEL8)))
#define IPS200_WR(x) ((x) ? (gpio_high(IPS200_WR_PIN_PARALLEL8)) : (gpio_low(IPS200_WR_PIN_PARALLEL8)))
#define IPS200_RST(x) ((x) ? (gpio_high(ips_rst_pin)) : (gpio_low(ips_rst_pin)))
#define IPS200_BL(x) ((x) ? (gpio_high(ips_bl_pin)) : (gpio_low(ips_bl_pin)))
#define IPS200_RS(x) ((x) ? (gpio_high(IPS200_RS_PIN_PARALLEL8)) : (gpio_low(IPS200_RS_PIN_PARALLEL8)))
#define IPS200_DC(x) ((x) ? (gpio_high(IPS200_DC_PIN_SPI)) : (gpio_low(IPS200_DC_PIN_SPI)))
#define IPS200_CS(x) ((x) ? (gpio_high(ips_cs_pin)) : (gpio_low(ips_cs_pin)))
typedef enum
{
IPS200_TYPE_SPI, // SPI 驱动
IPS200_TYPE_PARALLEL8, // 并口驱动
}ips200_type_enum;
typedef enum
{
IPS200_PORTAIT = 0, // 竖屏模式
IPS200_PORTAIT_180 = 1, // 竖屏模式 旋转180
IPS200_CROSSWISE = 2, // 横屏模式
IPS200_CROSSWISE_180 = 3, // 横屏模式 旋转180
}ips200_dir_enum;
typedef enum
{
IPS200_6X8_FONT = 0, // 6x8 字体
IPS200_8X16_FONT = 1, // 8x16 字体
IPS200_16X16_FONT = 2, // 16x16 字体 目前不支持
}ips200_font_size_enum;
void ips200_clear (void);
void ips200_full (const uint16 color);
void ips200_set_dir (ips200_dir_enum dir);
void ips200_set_font (ips200_font_size_enum font);
void ips200_set_color (const uint16 pen, const uint16 bgcolor);
void ips200_draw_point (uint16 x, uint16 y, const uint16 color);
void ips200_draw_line (uint16 x_start, uint16 y_start, uint16 x_end, uint16 y_end, const uint16 color);
void ips200_show_char (uint16 x, uint16 y, const char dat);
void ips200_show_string (uint16 x, uint16 y, const char dat[]);
void ips200_show_int (uint16 x, uint16 y, const int32 dat, uint8 num);
void ips200_show_uint (uint16 x, uint16 y, const uint32 dat, uint8 num);
void ips200_show_float (uint16 x, uint16 y, const double dat, uint8 num, uint8 pointnum);
void ips200_show_binary_image (uint16 x, uint16 y, const uint8 *image, uint16 width, uint16 height, uint16 dis_width, uint16 dis_height);
void ips200_show_gray_image (uint16 x, uint16 y, const uint8 *image, uint16 width, uint16 height, uint16 dis_width, uint16 dis_height, uint8 threshold);
void ips200_show_rgb565_image (uint16 x, uint16 y, const uint16 *image, uint16 width, uint16 height, uint16 dis_width, uint16 dis_height, uint8 color_mode);
void ips200_show_wave (uint16 x, uint16 y, const uint16 *wave, uint16 width, uint16 value_max, uint16 dis_width, uint16 dis_value_max);
void ips200_show_chinese (uint16 x, uint16 y, uint8 size, const uint8 *chinese_buffer, uint8 number, const uint16 color);
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 IPS200 显示小钻风图像
// 参数说明 p 图像数组
// 参数说明 width 显示宽度
// 参数说明 height 显示高度
// 返回参数 void
// 使用示例 ips200_displayimage7725(ov7725_image_binary[0], 80, 60);
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
#define ips200_displayimage7725(p, width, height) (ips200_show_binary_image(0, 0, (p), OV7725_W, OV7725_H, (width), (height)))
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 IPS200 显示总钻风图像 不带二值化 显示灰度图像
// 参数说明 p 图像数组
// 参数说明 width 显示宽度
// 参数说明 height 显示高度
// 返回参数 void
// 使用示例 ips200_displayimage03x(mt9v03x_image[0], 94, 60);
// 备注信息 如果要显示二值化图像就去调用 ips200_show_gray_image 函数
//-------------------------------------------------------------------------------------------------------------------
#define ips200_displayimage03x(p, width, height) (ips200_show_gray_image(0, 0, (p), MT9V03X_W, MT9V03X_H, (width), (height), 0))
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 IPS200 显示凌瞳图像
// 参数说明 p 图像数组
// 参数说明 width 显示宽度
// 参数说明 height 显示高度
// 返回参数 void
// 使用示例 ips200_displayimage8660(scc8660_image[0], 80, 60);
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
#define ips200_displayimage8660(p, width, height) (ips200_show_rgb565_image(0, 0, (p), SCC8660_W, SCC8660_H, (width), (height), 1))
void ips200_init (ips200_type_enum type_select);
#endif