2019-07-08 12:45:16 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @file k_conifg.h
|
|
|
|
* @author MCD Application Team
|
|
|
|
* @brief Header for k_config.c file
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
2019-10-18 12:36:04 +01:00
|
|
|
* <h2><center>© Copyright (c) 2016 STMicroelectronics.
|
2019-07-08 12:45:16 +01:00
|
|
|
* All rights reserved.</center></h2>
|
|
|
|
*
|
2019-10-18 12:36:04 +01:00
|
|
|
* 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
|
2019-07-08 12:45:16 +01:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
|
|
#ifndef __K_CONFIG_H
|
|
|
|
#define __K_CONFIG_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "main.h"
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
|
|
/* Exported macros -----------------------------------------------------------*/
|
|
|
|
#define EVAL_BOARD "STM32091C-EVAL"
|
|
|
|
#define DEMO_VERSION "Version 1.10.0"
|
|
|
|
#define DEMO_DATE "27 - October - 2017"
|
|
|
|
|
|
|
|
#define DEMO_INFO1 "MCD Application Team"
|
|
|
|
#define DEMO_INFO2 "COPYRIGHT 2016"
|
|
|
|
#define DEMO_INFO3 "STMicroelectronics"
|
|
|
|
|
|
|
|
#define CHOOSEFILE_MAXLEN 255
|
|
|
|
|
|
|
|
typedef enum{
|
|
|
|
MODULE_MAIN_APP,
|
|
|
|
MODULE_LOWPOWER,
|
|
|
|
MODULE_8UART,
|
|
|
|
MODULE_TSENSOR,
|
|
|
|
MODULE_LOG_DEMO,
|
|
|
|
MODULE_VIEWBMP,
|
|
|
|
MODULE_FILESBRO,
|
|
|
|
MODULE_SYSTEM_INFO,
|
|
|
|
MODULE_MAX,
|
|
|
|
MODULE_NONE = 0xFF
|
|
|
|
} MODULES_INFO;
|
|
|
|
|
|
|
|
#define countof(a) (sizeof(a) / sizeof(*(a)))
|
|
|
|
/* Exported functions ------------------------------------------------------- */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*__K_LOG_H */
|
|
|
|
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|