mirror of
https://gitee.com/moluo-tech/AT-Command
synced 2025-06-17 16:07:52 +00:00
18 lines
488 B
C
18 lines
488 B
C
/******************************************************************************
|
|
* @brief 系统配置文件
|
|
*
|
|
* Copyright (c) 2019, <morro_luo@163.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
#define APP_ADDRESS 0x08004000 //应用程序开始地址
|
|
|
|
#define SW_VER "1.00" //软件版本号
|
|
|
|
#endif
|