41 lines
975 B
C
41 lines
975 B
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file : app.c
|
|
* @brief : app program body
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2024 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/* USER CODE END Header */
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
#include "i2c.h"
|
|
#include "spi.h"
|
|
#include "tim.h"
|
|
#include "usart.h"
|
|
#include "gpio.h"
|
|
#include "key.h"
|
|
|
|
void app_act (void)
|
|
{
|
|
//1、按键操作
|
|
Key_Scan();//按键扫描
|
|
key_act(); //按键执行功能
|
|
|
|
//2、
|
|
|
|
}
|
|
|
|
|
|
|
|
|