gui_dispceol.c
来自「uCGUI」· C语言 代码 · 共 27 行
C
27 行
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
File : GUI_DispBin.c
Purpose : Routines to display values as binary
*************************************************************************************************************/
#include "GUI_Protected.H"
#include "GUIDebug.h"
#include "string.h"
/*************************************************************************************************************
Public code
*************************************************************************************************************/
/*************************************************************************************************************
Clear to end of line
*************************************************************************************************************/
void GUI_DispCEOL(void)
{
int y = GUI_Context.DispPosY - GUI_GetYAdjust();
GUI_ClearRect(GUI_Context.DispPosX, y, 4000, /* Max pos x */
y + GUI_Context.pAFont->YDist-1);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?