mirror of
https://github.com/STMicroelectronics/STM32CubeF0.git
synced 2025-05-03 22:17:10 +08:00
148 lines
4.2 KiB
C
148 lines
4.2 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
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "k_config.h"
|
|
#include "k_module.h"
|
|
#include "k_menu.h"
|
|
#include "k_storage.h"
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
KMODULE_RETURN AppMainExec(void);
|
|
static void AppMain_About(void);
|
|
static void AppMain_UserEvent(uint8_t sel);
|
|
KMODULE_RETURN AppMainExecCheckRessource(void);
|
|
|
|
/* Private Variable ----------------------------------------------------------*/
|
|
/* Variable used to exit an execution context */
|
|
__IO uint8_t exit_func;
|
|
|
|
const tMenuItem MainMenuItems[] =
|
|
{
|
|
{"Images Viewer" , 32, 60, SEL_MODULE, MODULE_VIEWBMP, NULL, NULL, NULL, "STFILES/ICON3.BMP" },
|
|
{"8 uarts" ,128, 60, SEL_MODULE, MODULE_8UART, NULL, NULL, NULL, "STFILES/8Uart.BMP" },
|
|
{"Thermometer" ,224, 60, SEL_MODULE, MODULE_TSENSOR, NULL, NULL, NULL, "STFILES/ICON6.BMP" },
|
|
{"Low Power Mode" , 32,144, SEL_MODULE,MODULE_LOWPOWER, NULL, NULL, NULL, "STFILES/ICON7.BMP" },
|
|
{"Files Browser" ,128,144, SEL_MODULE,MODULE_FILESBRO, NULL, NULL, NULL, "STFILES/filebw.BMP" },
|
|
{"About" ,224,144, SEL_EXEC, 0, AppMain_About, AppMain_UserEvent, NULL, "STFILES/ICON12.BMP"}
|
|
};
|
|
|
|
const tMenu MainMenu = {
|
|
"Main menu", MainMenuItems, countof(MainMenuItems), TYPE_ICON, 2, 3
|
|
};
|
|
|
|
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
/* External variables --------------------------------------------------------*/
|
|
const K_ModuleItem_Typedef ModuleAppMain =
|
|
{
|
|
MODULE_MAIN_APP,
|
|
NULL,
|
|
AppMainExec,
|
|
NULL,
|
|
AppMainExecCheckRessource
|
|
};
|
|
|
|
/**
|
|
* @brief Run the main application
|
|
* @param None.
|
|
* @note run and display main menu.
|
|
* @retval None.
|
|
*/
|
|
KMODULE_RETURN AppMainExec(void)
|
|
{
|
|
kMenu_Execute(MainMenu);
|
|
return KMODULE_OK;
|
|
}
|
|
|
|
/**
|
|
* @brief Run the About information
|
|
* @param None.
|
|
* @note display About information.
|
|
* @retval None.
|
|
*/
|
|
static void AppMain_About(void)
|
|
{
|
|
exit_func = 0;
|
|
BSP_LCD_SetFont(&Font20);
|
|
BSP_LCD_Clear(LCD_COLOR_BLUE);
|
|
BSP_LCD_SetTextColor(LCD_COLOR_WHITE);
|
|
|
|
BSP_LCD_DisplayStringAt(0,2*Font20.Height, (uint8_t *)EVAL_BOARD, CENTER_MODE);
|
|
BSP_LCD_DisplayStringAt(0,3*Font20.Height, (uint8_t *)"Demonstration", CENTER_MODE);
|
|
|
|
BSP_LCD_DisplayStringAt(0,5*Font20.Height, (uint8_t *)DEMO_VERSION, CENTER_MODE);
|
|
BSP_LCD_DisplayStringAt(0,6*Font20.Height, (uint8_t *)DEMO_DATE, CENTER_MODE);
|
|
|
|
BSP_LCD_DisplayStringAt(0,8*Font20.Height, (uint8_t *)DEMO_INFO1, CENTER_MODE);
|
|
BSP_LCD_DisplayStringAt(0,9*Font20.Height, (uint8_t *)DEMO_INFO2, CENTER_MODE);
|
|
BSP_LCD_DisplayStringAt(0,10*Font20.Height, (uint8_t *)DEMO_INFO3, CENTER_MODE);
|
|
while(exit_func==0);
|
|
}
|
|
|
|
/**
|
|
* @brief Callback used to get user feedback
|
|
* @param None.
|
|
* @note None.
|
|
* @retval None.
|
|
*/
|
|
static void AppMain_UserEvent(uint8_t sel)
|
|
{
|
|
switch(sel)
|
|
{
|
|
case JOY_DOWN :
|
|
exit_func = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @brief check the main application ressources
|
|
* @param None.
|
|
* @note None.
|
|
* @retval None.
|
|
*/
|
|
KMODULE_RETURN AppMainExecCheckRessource(void)
|
|
{
|
|
uint8_t index;
|
|
|
|
/* check icon menu */
|
|
for(index = 0; index < countof(MainMenuItems); index++)
|
|
{
|
|
if(kStorage_FileExist((uint8_t *)MainMenuItems[index].pIconPath) != KSTORAGE_NOERROR)
|
|
{
|
|
return KMODULE_ERROR_ICON;
|
|
}
|
|
}
|
|
return KMODULE_OK;
|
|
}
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
|
|