2019-10-18 15:22:51 +01:00

66 lines
2.0 KiB
C

/**
******************************************************************************
* @file k_conifg.h
* @author MCD Application Team
* @brief Header for k_config.c file
******************************************************************************
* @attention
*
* <h2><center>&copy; 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
*
******************************************************************************
*/
/* 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****/