gui_setlutentry.c
来自「uCGUI」· C语言 代码 · 共 24 行
C
24 行
/*************************************************************************************************************
SEGGER MICROCONTROLLER SYSTEME GmbH
* Solutions for real time microcontroller applications
File : GUI_SetLUTEntry.c
Purpose : Implementation of GUI_SetLUTEntry
************************************************************************************************************/
#include "GUI_Protected.H"
/*************************************************************************************************************
GUI_SetLUTEntry--向LUT写入一个数值
*************************************************************************************************************/
void GUI_SetLUTEntry(U8 Pos, LCD_COLOR Color)
{
GUI_LOCK();
LCD_SetLUTEntry(Pos, Color);
GUI_UNLOCK();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?