Files
QDAC-firmware/libraries/zf_device/zf_device_oled.c
2023-12-11 21:45:06 +08:00

766 lines
36 KiB
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*********************************************************************************************************************
* 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_oled
* 公司名称 成都逐飞科技有限公司
* 版本信息 查看 libraries/doc 文件夹内 version 文件 版本说明
* 开发环境 MounRiver Studio V1.8.1
* 适用平台 CH32V307VCT6
* 店铺链接 https://seekfree.taobao.com/
*
* 修改记录
* 日期 作者 备注
* 2022-09-15 大W first version
********************************************************************************************************************/
/*********************************************************************************************************************
* 接线定义:
* ------------------------------------
* 模块管脚 单片机管脚
* D0 查看 zf_device_oled.h 中 OLED_D0_PIN 宏定义
* D1 查看 zf_device_oled.h 中 OLED_D1_PIN 宏定义
* RES 查看 zf_device_oled.h 中 OLED_RES_PIN 宏定义
* DC 查看 zf_device_oled.h 中 OLED_DC_PIN 宏定义
* CS 查看 zf_device_oled.h 中 OLED_CS_PIN 宏定义
* VCC 3.3V电源
* GND 电源地
* ------------------------------------
********************************************************************************************************************/
#include "zf_common_clock.h"
#include "zf_common_debug.h"
#include "zf_common_font.h"
#include "zf_common_function.h"
#include "zf_driver_delay.h"
#include "zf_driver_soft_spi.h"
#include "zf_driver_spi.h"
#include "zf_device_oled.h"
#if OLED_USE_SOFT_SPI
static soft_spi_info_struct oled_spi;
#define oled_spi_write_8bit(data) (soft_spi_write_8bit(&oled_spi, (data)))
#else
#define oled_spi_write_8bit(data) (spi_write_8bit(OLED_SPI, (data)))
#endif
static oled_dir_enum oled_display_dir = OLED_DEFAULT_DISPLAY_DIR;
static oled_font_size_enum oled_display_font = OLED_DEFAULT_DISPLAY_FONT;
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 写8位数据
// 参数说明 data 数据
// 返回参数 void
// 使用示例 oled_write_data(color);
// 备注信息 内部调用 用户无需关心
//-------------------------------------------------------------------------------------------------------------------
static void oled_write_data (const uint8 data)
{
OLED_DC(1);
oled_spi_write_8bit(data);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 写命令
// 参数说明 cmd 命令
// 返回参数 void
// 使用示例 oled_write_command(0xb0 + y);
// 备注信息 内部调用 用户无需关心
//-------------------------------------------------------------------------------------------------------------------
static void oled_write_command (const uint8 command)
{
OLED_DC(0);
oled_spi_write_8bit(command);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED显示坐标设置
// 参数说明 x x轴坐标设置0-127
// 参数说明 y y轴坐标设置0-7
// 返回参数 void
// 使用示例 oled_set_coordinate(x, y);
// 备注信息 内部使用用户无需关心
//-------------------------------------------------------------------------------------------------------------------
static void oled_set_coordinate (uint8 x, uint8 y)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
oled_write_command(0xb0 + y);
oled_write_command(((x & 0xf0) >> 4) | 0x10);
oled_write_command((x & 0x0f) | 0x00);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED显示DEBUG信息初始化
// 参数说明 void
// 返回参数 void
// 使用示例 oled_debug_init();
// 备注信息 内部使用用户无需关心
//-------------------------------------------------------------------------------------------------------------------
static void oled_debug_init (void)
{
debug_output_struct info;
debug_output_struct_init(&info);
info.type_index = 1;
info.display_x_max = OLED_X_MAX;
info.display_y_max = OLED_Y_MAX;
switch(oled_display_font)
{
case OLED_6X8_FONT:
{
info.font_x_size = 6;
info.font_y_size = 1;
}break;
case OLED_8X16_FONT:
{
info.font_x_size = 8;
info.font_y_size = 2;
}break;
case OLED_16X16_FONT:
{
// 暂不支持
}break;
}
info.output_screen = oled_show_string;
info.output_screen_clear = oled_clear;
debug_output_init(&info);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 清屏函数
// 参数说明 void
// 返回参数 void
// 使用示例 oled_clear();
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_clear (void)
{
uint8 y = 0, x = 0;
OLED_CS(0);
for(y = 0; 8 > y; y ++)
{
oled_write_command(0xb0 + y);
oled_write_command(0x01);
oled_write_command(0x10);
for(x = 0; OLED_X_MAX > x; x ++)
{
oled_write_data(0x00);
}
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 屏幕填充函数
// 参数说明 color 填充颜色选着(0x00 or 0xff)
// 返回参数 void
// 使用示例 oled_full(0x00);
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_full (const uint8 color)
{
uint8 y = 0, x = 0;
OLED_CS(0);
for(y = 0; 8 > y; y ++)
{
oled_write_command(0xb0 + y);
oled_write_command(0x01);
oled_write_command(0x10);
for(x = 0; OLED_X_MAX > x; x ++)
{
oled_write_data(color);
}
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 设置显示方向
// 参数说明 dir 显示方向 参照 zf_device_oled.h 内 oled_dir_enum 枚举体定义
// 返回参数 void
// 使用示例 oled_set_dir(OLED_CROSSWISE);
// 备注信息 这个函数只有在初始化屏幕之前调用才生效
//-------------------------------------------------------------------------------------------------------------------
void oled_set_dir (oled_dir_enum dir)
{
oled_display_dir = dir;
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 设置显示字体
// 参数说明 dir 显示方向 参照 zf_device_oled.h 内 oled_font_size_enum 枚举体定义
// 返回参数 void
// 使用示例 oled_set_font(OLED_8x16_FONT);
// 备注信息 字体可以随时自由设置 设置后生效 后续显示就是新的字体大小
//-------------------------------------------------------------------------------------------------------------------
void oled_set_font (oled_font_size_enum font)
{
oled_display_font = font;
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 画点函数
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 color 8 个点数据
// 返回参数 void
// 使用示例 oled_draw_point(0, 0, 1);
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_draw_point (uint16 x, uint16 y, const uint8 color)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
OLED_CS(0);
oled_set_coordinate(x, y);
oled_write_command(0xb0 + y);
oled_write_command(((x & 0xf0) >> 4) | 0x10);
oled_write_command((x & 0x0f) | 0x00);
oled_write_data(color);
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示字符串
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 ch[] 字符串
// 返回参数 void
// 使用示例 oled_show_string(0, 0, "SEEKFREE");
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_show_string (uint16 x, uint16 y, const char ch[])
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
OLED_CS(0);
uint8 c = 0, i = 0, j = 0;
while ('\0' != ch[j])
{
switch(oled_display_font)
{
case OLED_6X8_FONT:
{
c = ch[j] - 32;
if(x > 126)
{
x = 0;
y ++;
}
oled_set_coordinate(x, y);
for(i = 0; 6 > i; i ++)
{
oled_write_data(ascii_font_6x8[c][i]);
}
x += 6;
j ++;
}break;
case OLED_8X16_FONT:
{
c = ch[j] - 32;
if(x > 120)
{
x = 0;
y ++;
}
oled_set_coordinate(x, y);
for(i = 0; i < 8; i ++)
{
oled_write_data(ascii_font_8x16[c][i]);
}
oled_set_coordinate(x, y + 1);
for(i = 0; i < 8; i ++)
{
oled_write_data(ascii_font_8x16[c][i + 8]);
}
x += 8;
j ++;
}break;
case OLED_16X16_FONT:
{
// 暂不支持
}break;
}
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示32位有符号 (去除整数部分无效的0)
// 参数说明 x x轴坐标设置 0-127
// 参数说明 y y轴坐标设置 0-7
// 参数说明 dat 需要显示的变量 数据类型 int32
// 参数说明 num 需要显示的位数 最高10位 不包含正负号
// 返回参数 void
// 使用示例 oled_show_int(0, 0, x, 3); // x 可以为 int32 int16 int8 类型
// 备注信息 负数会显示一个 -’号
//-------------------------------------------------------------------------------------------------------------------
void oled_show_int (uint16 x, uint16 y, const int32 dat, uint8 num)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(0 < num);
zf_assert(10 >= num);
int32 dat_temp = dat;
int32 offset = 1;
char data_buffer[12];
memset(data_buffer, 0, 12);
memset(data_buffer, ' ', num + 1);
// 用来计算余数显示 123 显示 2 位则应该显示 23
if(10 > num)
{
for(; 0 < num; num --)
{
offset *= 10;
}
dat_temp %= offset;
}
func_int_to_str(data_buffer, dat_temp);
oled_show_string(x, y, (const char *)&data_buffer);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示32位无符号 (去除整数部分无效的0)
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 dat 需要显示的变量 数据类型 uint32
// 参数说明 num 需要显示的位数 最高10位 不包含正负号
// 返回参数 void
// 使用示例 oled_show_uint(0, 0, x, 3); // x 可以为 uint32 uint16 uint8 类型
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_show_uint (uint16 x,uint16 y,const uint32 dat,uint8 num)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(0 < num);
zf_assert(10 >= num);
uint32 dat_temp = dat;
int32 offset = 1;
char data_buffer[12];
memset(data_buffer, 0, 12);
memset(data_buffer, ' ', num);
// 用来计算余数显示 123 显示 2 位则应该显示 23
if(10 > num)
{
for(; 0 < num; num --)
{
offset *= 10;
}
dat_temp %= offset;
}
func_uint_to_str(data_buffer, dat_temp);
oled_show_string(x, y, (const char *)&data_buffer);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示浮点数 (去除整数部分无效的0)
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 dat 需要显示的变量 数据类型 float
// 参数说明 num 整数位显示长度 最高8位
// 参数说明 pointnum 小数位显示长度 最高6位
// 返回参数 void
// 使用示例 oled_show_float(0, 0, x, 2, 3); // 显示浮点数 整数显示2位 小数显示三位
// 备注信息 特别注意当发现小数部分显示的值与你写入的值不一样的时候,
// 可能是由于浮点数精度丢失问题导致的,这并不是显示函数的问题,
// 有关问题的详情,请自行百度学习 浮点数精度丢失问题。
// 负数会显示一个 -’号
//-------------------------------------------------------------------------------------------------------------------
void oled_show_float (uint16 x,uint16 y,const double dat,uint8 num,uint8 pointnum)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(0 < num);
zf_assert(8 >= num);
zf_assert(0 < pointnum);
zf_assert(6 >= pointnum);
double dat_temp = dat;
double offset = 1.0;
char data_buffer[17];
memset(data_buffer, 0, 17);
memset(data_buffer, ' ', num + pointnum + 2);
// 用来计算余数显示 123 显示 2 位则应该显示 23
for(; 0 < num; num --)
{
offset *= 10;
}
dat_temp = dat_temp - ((int)dat_temp / (int)offset) * offset;
func_double_to_str(data_buffer, dat_temp, pointnum);
oled_show_string(x, y, data_buffer);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示二值图像 数据每八个点组成一个字节数据
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 *image 图像数组指针
// 参数说明 width 图像实际宽度
// 参数说明 height 图像实际高度
// 参数说明 dis_width 图像显示宽度 参数范围 [0, 128]
// 参数说明 dis_height 图像显示高度 参数范围 [0, 64]
// 返回参数 void
// 使用示例 oled_show_binary_image(0, 0, ov7725_image_binary[0], OV7725_W, OV7725_H, OV7725_W, OV7725_H);
// 备注信息 用于显示小钻风的未解压的压缩二值化图像
// 这个函数不可以用来直接显示总钻风的未压缩的二值化图像
// 这个函数不可以用来直接显示总钻风的未压缩的二值化图像
// 这个函数不可以用来直接显示总钻风的未压缩的二值化图像
//-------------------------------------------------------------------------------------------------------------------
void oled_show_binary_image (uint16 x, uint16 y, const uint8 *image, uint16 width, uint16 height, uint16 dis_width, uint16 dis_height)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(NULL != image);
uint32 i = 0, j = 0, z = 0;
uint8 dat = 0;
uint32 width_index = 0, height_index = 0;
OLED_CS(0);
dis_height = dis_height - dis_height % 8;
dis_width = dis_width - dis_width % 8;
for(j = 0; j < dis_height; j += 8)
{
oled_set_coordinate(x + 0, y + j / 8);
height_index = j * height / dis_height;
for(i = 0; i < dis_width; i += 8)
{
width_index = i * width / dis_width / 8;
for(z = 0; 8 > z; z ++)
{
dat = 0;
if(*(image + height_index * width / 8 + width_index + width / 8 * 0) & (0x80 >> z))
{
dat |= 0x01;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 1) & (0x80 >> z))
{
dat |= 0x02;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 2) & (0x80 >> z))
{
dat |= 0x04;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 3) & (0x80 >> z))
{
dat |= 0x08;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 4) & (0x80 >> z))
{
dat |= 0x10;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 5) & (0x80 >> z))
{
dat |= 0x20;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 6) & (0x80 >> z))
{
dat |= 0x40;
}
if(*(image + height_index * width / 8 + width_index + width / 8 * 7) & (0x80 >> z))
{
dat |= 0x80;
}
oled_write_data(dat);
}
}
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示 8bit 灰度图像 带二值化阈值
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 *image 图像数组指针
// 参数说明 width 图像实际宽度
// 参数说明 height 图像实际高度
// 参数说明 dis_width 图像显示宽度 参数范围 [0, 128]
// 参数说明 dis_height 图像显示高度 参数范围 [0, 64]
// 参数说明 threshold 二值化显示阈值 0-不开启二值化
// 返回参数 void
// 使用示例 oled_show_gray_image(0, 0, mt9v03x_image[0], width, height, 128, 64, x);
// 备注信息 用于显示总钻风的图像
// 如果要显示二值化图像 直接修改最后一个参数为需要的二值化阈值即可
// 如果要显示二值化图像 直接修改最后一个参数为需要的二值化阈值即可
// 如果要显示二值化图像 直接修改最后一个参数为需要的二值化阈值即可
//-------------------------------------------------------------------------------------------------------------------
void oled_show_gray_image (uint16 x, uint16 y, const uint8 *image, uint16 width, uint16 height, uint16 dis_width, uint16 dis_height, uint8 threshold)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(NULL != image);
int16 i = 0, j = 0;
uint8 dat = 0;
uint32 width_index = 0, height_index = 0;
OLED_CS(0);
dis_height = dis_height - dis_height % 8;
for(j = 0; j < dis_height; j += 8)
{
oled_set_coordinate(x + 0, y + j / 8);
height_index = j * height / dis_height;
for(i = 0; i < dis_width; i ++)
{
width_index = i * width / dis_width;
dat = 0;
if(*(image + height_index * width + width_index + width * 0) > threshold)
{
dat |= 0x01;
}
if(*(image + height_index * width + width_index + width * 1) > threshold)
{
dat |= 0x02;
}
if(*(image + height_index * width + width_index + width * 2) > threshold)
{
dat |= 0x04;
}
if(*(image + height_index * width + width_index + width * 3) > threshold)
{
dat |= 0x08;
}
if(*(image + height_index * width + width_index + width * 4) > threshold)
{
dat |= 0x10;
}
if(*(image + height_index * width + width_index + width * 5) > threshold)
{
dat |= 0x20;
}
if(*(image + height_index * width + width_index + width * 6) > threshold)
{
dat |= 0x40;
}
if(*(image + height_index * width + width_index + width * 7) > threshold)
{
dat |= 0x80;
}
oled_write_data(dat);
}
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED 显示波形
// 参数说明 x x 轴坐标设置 0-127
// 参数说明 y y 轴坐标设置 0-7
// 参数说明 *wave 波形数组指针
// 参数说明 width 波形实际宽度
// 参数说明 value_max 波形实际最大值
// 参数说明 dis_width 波形显示宽度 参数范围 [0, 128]
// 参数说明 dis_value_max 波形显示最大值 参数范围 [0, 64]
// 返回参数 void
// 使用示例 oled_show_wave(0, 0, data, 128, 64, 128, 64);
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_show_wave (uint16 x, uint16 y, const uint16 *wave, uint16 width, uint16 value_max, uint16 dis_width, uint16 dis_value_max)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(NULL != wave);
uint32 i = 0;
uint32 width_index = 0, value_max_index = 0;
uint8 dis_h = 0;
uint32 x_temp = 0;
uint32 y_temp = 0;
OLED_CS(0);
for(y_temp = 0; y_temp < dis_value_max; y_temp += 8)
{
oled_set_coordinate(x + 0, y + y_temp / 8);
for(x_temp = 0; x_temp < dis_width; x_temp ++)
{
oled_write_data(0x00);
}
}
for(i = 0; i < dis_width; i ++)
{
width_index = i * width / dis_width;
value_max_index = *(wave + width_index) * (dis_value_max - 1) / value_max;
dis_h = (dis_value_max - 1) - value_max_index;
oled_set_coordinate(i + x, dis_h / 8 + y);
dis_h = (0x01 << dis_h % 8);
oled_write_data(dis_h);
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 汉字显示
// 参数说明 x 横坐标 0-127
// 参数说明 y 纵坐标 0-7
// 参数说明 size 取模的时候设置的汉字字体大小,也就是一个汉字占用的点阵长宽为多少个点,取模的时候需要长宽是一样的。
// 参数说明 *chinese_buffer 需要显示的汉字数组
// 参数说明 number 需要显示多少位
// 返回参数 void
// 使用示例 oled_show_chinese(0, 6, 16, (const uint8 *)oled_16x16_chinese, 4);
// 备注信息 使用PCtoLCD2002软件取模 阴码、逐行式、顺向 16*16
//-------------------------------------------------------------------------------------------------------------------
void oled_show_chinese (uint16 x, uint16 y, uint8 size, const uint8 *chinese_buffer, uint8 number)
{
// 如果程序在输出了断言信息 并且提示出错位置在这里
// 那么一般是屏幕显示的时候超过屏幕分辨率范围了
// 检查一下你的显示调用的函数 自己计算一下哪里超过了屏幕显示范围
zf_assert(128 > x);
zf_assert(8 > y);
zf_assert(NULL != chinese_buffer);
int16 i = 0, j = 0, k = 0;
OLED_CS(0);
for(i = 0; i < number; i ++)
{
for(j = 0; j < (size / 8); j ++)
{
oled_set_coordinate(x + i * size, y + j);
for(k = 0; 16 > k; k ++)
{
oled_write_data(*chinese_buffer);
chinese_buffer ++;
}
}
}
OLED_CS(1);
}
//-------------------------------------------------------------------------------------------------------------------
// 函数简介 OLED初始化函数
// 参数说明 void
// 返回参数 void
// 使用示例 oled_init();
// 备注信息
//-------------------------------------------------------------------------------------------------------------------
void oled_init (void)
{
#if OLED_USE_SOFT_SPI
soft_spi_init(&oled_spi, 0, OLED_SOFT_SPI_DELAY, OLED_D0_PIN, OLED_D1_PIN, SOFT_SPI_PIN_NULL, SOFT_SPI_PIN_NULL);
#else
spi_init(OLED_SPI, SPI_MODE0, OLED_SPI_SPEED, OLED_D0_PIN, OLED_D1_PIN, SPI_MISO_NULL, SPI_CS_NULL);
#endif
gpio_init(OLED_RES_PIN, GPO, GPIO_HIGH, GPO_PUSH_PULL);
gpio_init(OLED_DC_PIN , GPO, GPIO_HIGH, GPO_PUSH_PULL);
gpio_init(OLED_CS_PIN , GPO, GPIO_HIGH, GPO_PUSH_PULL);
oled_set_dir(oled_display_dir);
OLED_CS(0);
OLED_RES(0);
system_delay_ms(50);
OLED_RES(1);
oled_write_command(0xae); // --turn off oled panel
oled_write_command(0x00); // ---set low column address
oled_write_command(0x10); // ---set high column address
oled_write_command(0x40); // --set start line address Set Mapping RAM Display Start Line (0x00~0x3F)
oled_write_command(0x81); // --set contrast control register
oled_write_command(OLED_BRIGHTNESS); // Set SEG Output Current Brightness
if(OLED_CROSSWISE == oled_display_dir)
{
oled_write_command(0xa1); // --Set SEG/Column Mapping 0xa0左右反置 0xa1正常
oled_write_command(0xc8); // Set COM/Row Scan Direction 0xc0上下反置 0xc8正常
}
else
{
oled_write_command(0xa0); // --Set SEG/Column Mapping 0xa0左右反置 0xa1正常
oled_write_command(0xc0); // Set COM/Row Scan Direction 0xc0上下反置 0xc8正常
}
oled_write_command(0xa6); // --set normal display
oled_write_command(0xa8); // --set multiplex ratio(1 to 64)
oled_write_command(0x3f); // --1/64 duty
oled_write_command(0xd3); // -set display offset Shift Mapping RAM Counter (0x00~0x3F)
oled_write_command(0x00); // -not offset
oled_write_command(0xd5); // --set display clock divide ratio/oscillator frequency
oled_write_command(0x80); // --set divide ratio, Set Clock as 100 Frames/Sec
oled_write_command(0xd9); // --set pre-charge period
oled_write_command(0xf1); // Set Pre-Charge as 15 Clocks & Discharge as 1 Clock
oled_write_command(0xda); // --set com pins hardware configuration
oled_write_command(0x12);
oled_write_command(0xdb); // --set vcomh
oled_write_command(0x40); // Set VCOM Deselect Level
oled_write_command(0x20); // -Set Page Addressing Mode (0x00/0x01/0x02)
oled_write_command(0x02); //
oled_write_command(0x8d); // --set Charge Pump enable/disable
oled_write_command(0x14); // --set(0x10) disable
oled_write_command(0xa4); // Disable Entire Display On (0xa4/0xa5)
oled_write_command(0xa6); // Disable Inverse Display On (0xa6/a7)
oled_write_command(0xaf); // --turn on oled panel
OLED_CS(1);
oled_clear(); // 初始清屏
oled_set_coordinate(0, 0);
oled_debug_init();
}