2019-05-01 00:27:23 +08:00
|
|
|
/*********************************************************************
|
|
|
|
* Portions COPYRIGHT 2017 STMicroelectronics *
|
|
|
|
* Portions SEGGER Microcontroller GmbH & Co. KG *
|
|
|
|
* Solutions for real time microcontroller applications *
|
|
|
|
**********************************************************************
|
|
|
|
* *
|
|
|
|
* (c) 1996 - 2017 SEGGER Microcontroller GmbH & Co. KG *
|
|
|
|
* *
|
|
|
|
* Internet: www.segger.com Support: support@segger.com *
|
|
|
|
* *
|
|
|
|
**********************************************************************
|
|
|
|
|
|
|
|
** emWin V5.40 - Graphical user interface for embedded applications **
|
|
|
|
emWin is protected by international copyright laws. Knowledge of the
|
|
|
|
source code may not be used to write a similar product. This file may
|
|
|
|
only be used in accordance with a license and should not be re-
|
|
|
|
distributed in any way. We appreciate your understanding and fairness.
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
File : SIMConf.c
|
|
|
|
Purpose : Windows Simulator configuration
|
|
|
|
---------------------------END-OF-HEADER------------------------------
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
2022-03-09 16:22:30 +08:00
|
|
|
* Copyright (c) 2017 STMicroelectronics.
|
|
|
|
* All rights reserved.
|
2019-05-01 00:27:23 +08:00
|
|
|
*
|
2022-03-09 16:22:30 +08:00
|
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
|
|
* in the root directory of this software component.
|
|
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
2019-05-01 00:27:23 +08:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
|
|
#include "LCD_SIM.h"
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
*
|
|
|
|
* Public code
|
|
|
|
*
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
/*********************************************************************
|
|
|
|
*
|
|
|
|
* SIM_X_Config
|
|
|
|
*
|
|
|
|
* Purpose:
|
|
|
|
* Called during the initialization process in order to configure
|
|
|
|
* the simulator.
|
|
|
|
*/
|
|
|
|
void SIM_X_Config() {
|
|
|
|
SIM_GUI_SetTransColor(0xff0000); // Define the transparent color
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void SIMConf_C(void); // Avoid empty object files
|
|
|
|
void SIMConf_C(void) {}
|
|
|
|
|
|
|
|
#endif
|