mirror of
https://gitee.com/Polarix/simplegui.git
synced 2025-06-17 13:37:52 +00:00

将tab键替换为空格 删除每行末尾无用的空格 # Conflicts: # DemoProc/src/DemoProc.c # GUI/inc/SGUI_Basic.h # GUI/inc/SGUI_Typedef.h # GUI/src/SGUI_Basic.c # GUI/src/SGUI_Curve.c # GUI/src/SGUI_Text.c
16 lines
544 B
C
16 lines
544 B
C
#ifndef _INCLUDE_UC1604C_SOFT_SPI_H_
|
|
#define _INCLUDE_UC1604C_SOFT_SPI_H_
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
// include
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
#include <stdint.h>
|
|
|
|
#define COLUMN_MAX 192
|
|
#define PAGE_MAX 8
|
|
|
|
void UC1604C_Initialize(void);
|
|
void UC1604C_SetPosition(uint8_t uiColumn, uint8_t uiPage);
|
|
void UC1604C_WriteData(uint8_t uiData);
|
|
void UC1604C_Fill(uint8_t bmp_dat);
|
|
#endif //_INCLUDE_UC1604C_SOFT_SPI_H_
|