mirror of
https://gitee.com/lzc56/MiaoUI.git
synced 2025-08-13 12:42:53 +00:00
21 lines
656 B
C
21 lines
656 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"
|
||
|
|
||
|
uint8_t u8x8_gpio_and_delay(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);
|
||
|
void u8g2Init(u8g2_t *u8g2);
|
||
|
void draw_(u8g2_t *u8g2);
|
||
|
void testDrawPixelToFillScreen(u8g2_t *u8g2);
|
||
|
|
||
|
#endif
|