23 lines
298 B
C
23 lines
298 B
C
/**
|
|
* @file app.h
|
|
* @author xushenghao
|
|
* @date 2024-08-09 09:03:08
|
|
* @brief
|
|
* @copyright Copyright (c) 2024 by xxx, All Rights Reserved.
|
|
*/
|
|
#ifndef APP_H
|
|
#define APP_H
|
|
#include "main.h"
|
|
|
|
typedef struct
|
|
{
|
|
|
|
} app_t;
|
|
|
|
extern app_t app;
|
|
|
|
void app_init(void);
|
|
void app_run(void);
|
|
|
|
#endif // APP_H
|