?? gui_setphyscolor.c
字號:
/*************************************************************************************************************
SEGGER MICROCONTROLLER SYSTEME GmbH
* Solutions for real time microcontroller applications
File : GUI_SetPhysColor.c
Purpose : Implementation of GUI_SetPhysColor
************************************************************************************************************/
#include "GUI_Protected.H"
#include "LCD_ConfDefaults.h"
/*************************************************************************************************************
Public code--
*************************************************************************************************************/
void GUI_SetPhysColor(U8 Pos, LCD_COLOR Color)
{
#if LCD_PHYSCOLORS_IN_RAM
GUI_LOCK();
LCD_PhysColors[Pos] = Color;
LCD_SetLUTEntry(Pos, Color);
GUI_UNLOCK();
#else
GUI_USE_PARA(Pos);
GUI_USE_PARA(Color);
#endif
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -