mirror of
https://github.com/RQNG/WouoUI.git
synced 2025-06-17 13:07:54 +00:00
15 lines
292 B
C
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
|
|
|