mirror of
https://github.com/STMicroelectronics/STM32CubeF0.git
synced 2025-05-03 22:17:10 +08:00
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
/**
|
|
******************************************************************************
|
|
* @file system_win.c
|
|
* @author MCD Application Team
|
|
* @brief System information functions
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2016 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under Ultimate Liberty license
|
|
* SLA0044, the "License"; You may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at:
|
|
* www.st.com/SLA0044
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#undef GLOBAL
|
|
#ifdef __IMAGEBROWSER_APP_C
|
|
#define GLOBAL
|
|
#else
|
|
#define GLOBAL extern
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
/** @addtogroup SYSTEM_INFO_MODULE
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup SYSTEM_INFO
|
|
* @brief system info routines
|
|
* @{
|
|
*/
|
|
|
|
/* external defines -----------------------------------------------------------*/
|
|
/* External variables --------------------------------------------------------*/
|
|
GLOBAL const K_ModuleItem_Typedef ModuleFilesBrowser;
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
|
|
/* Private macros ------------------------------------------------------------*/
|
|
/* Private variables ---------------------------------------------------------*/
|
|
/* Private functions ---------------------------------------------------------*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
|
|