MiaoUI/example/STM32F103C8T6/src/u8g2Drive/stm32_u8g2.h

20 lines
572 B
C
Raw Normal View History

2024-04-06 18:01:42 +00:00
/*
* @Author: JFeng 2834294740@qq.com
* @Date: 2023-06-30 12:08:24
* @LastEditors: JFeng 2834294740@qq.com
* @LastEditTime: 2023-07-14 20:12:55
* @FilePath: \MY_GUI\HARDWARE\stm32_u8g2.h
* @Description: ,`customMade`, koroFileHeader查看配置 : https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
#ifndef __STM32_U8G2_H
#define __STM32_U8G2_H
#include "stm32f10x.h"
#include "u8g2.h"
void u8g2Init(u8g2_t *u8g2);
2024-04-06 18:55:15 +00:00
void Draw_U8G2(u8g2_t *u8g2);
2024-04-06 18:01:42 +00:00
void testDrawPixelToFillScreen(u8g2_t *u8g2);
#endif