MiaoUI/example/STM32F103C8T6/src/u8g2Drive/stm32_u8g2.h
2024-04-07 02:55:15 +08:00

20 lines
572 B
C

/*
* @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);
void Draw_U8G2(u8g2_t *u8g2);
void testDrawPixelToFillScreen(u8g2_t *u8g2);
#endif