mirror of
https://github.com/WeActStudio/WeActStudio.EpaperModule.git
synced 2026-08-16 13:13:45 +02:00
42 lines
942 B
C
42 lines
942 B
C
/*!
|
|
* @file main.h
|
|
*
|
|
* @brief Main program body
|
|
*
|
|
* @version V1.0.2
|
|
*
|
|
* @date 2022-01-05
|
|
*
|
|
* @attention
|
|
*
|
|
* Copyright (C) 2020-2022 Geehy Semiconductor
|
|
*
|
|
* You may not use this file except in compliance with the
|
|
* GEEHY COPYRIGHT NOTICE (GEEHY SOFTWARE PACKAGE LICENSE).
|
|
*
|
|
* The program is only for reference, which is distributed in the hope
|
|
* that it will be usefull and instructional for customers to develop
|
|
* their software. Unless required by applicable law or agreed to in
|
|
* writing, the program is distributed on an "AS IS" BASIS, WITHOUT
|
|
* ANY WARRANTY OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the GEEHY SOFTWARE PACKAGE LICENSE for the governing permissions
|
|
* and limitations under the License.
|
|
*/
|
|
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "apm32f10x.h"
|
|
|
|
void Delay(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|