WouoUI/Third-party-design/PageVersion/Csource/src/oled_port.h
2024-02-19 11:50:46 +08:00

15 lines
292 B
C

#ifndef __OLED_PORT_H__
#define __OLED_PORT_H__
#include "stdio.h"
#include "stdint.h"
#define OLED_LOG (void)
//对应要实现的接口函数
void OLED_Init(void); //初始化驱动
void OLED_SendBuff(uint8_t buff[8][128]); //将8*128字节的buff一次性全部发送的函数
#endif