26 lines
529 B
C
26 lines
529 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Change Logs:
|
||
|
|
* Date Author Notes
|
||
|
|
* 2024-04-17 GOATS the first version
|
||
|
|
*/
|
||
|
|
#ifndef APPLICATIONS_CONFIG_CONSOLE_H_
|
||
|
|
#define APPLICATIONS_CONFIG_CONSOLE_H_
|
||
|
|
|
||
|
|
#include <rtthread.h>
|
||
|
|
#include <board.h>
|
||
|
|
#include <rtdevice.h>
|
||
|
|
#include <shell.h>
|
||
|
|
#include <mb85rs.h>
|
||
|
|
#include <adc.h>
|
||
|
|
#include <mqtt.h>
|
||
|
|
#include "modbus_rtu.h"
|
||
|
|
|
||
|
|
//读取配置
|
||
|
|
void read_config();
|
||
|
|
|
||
|
|
#endif /* APPLICATIONS_CONFIG_CONSOLE_H_ */
|