You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.9 KiB
97 lines
1.9 KiB
4 years ago
|
//////////////////////////////////////////////////////////////////////////
|
||
|
/// COPYRIGHT NOTICE
|
||
|
/// Copyright (c) 2017, 传控科技
|
||
|
/// All rights reserved.
|
||
|
///
|
||
|
/// @file main.c
|
||
|
/// @brief main app
|
||
|
///
|
||
|
///(本文件实现的功能的详述)
|
||
|
///
|
||
|
/// @version 1.1 CCsens technology
|
||
|
/// @author CC
|
||
|
/// @date 20150102
|
||
|
///
|
||
|
///
|
||
|
/// 修订说明:最初版本
|
||
|
/// Modified by:
|
||
|
/// Modified date:
|
||
|
/// Version:
|
||
|
/// Descriptions:
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
/// msp: humtemp flow
|
||
|
/// bsp: i2c adc
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
///
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _MAIN_H
|
||
|
#define _MAIN_H
|
||
|
#include "../bsp/bsp_config.h"
|
||
|
//#include "../bsp/adxl362.h"
|
||
|
|
||
|
//#include "../msp/stc_adc.h"
|
||
|
#include "../msp/uart0.h"
|
||
|
//#include "../msp/uart2.h"
|
||
|
//#include "../msp/uart4.h"
|
||
|
//#include "../msp/uart3.h"
|
||
|
//#include "../msp/time.h"
|
||
|
//#include "../msp/msp_buzz.h"
|
||
|
//#include "../msp/msp_rtc.h"
|
||
|
//#include "../msp/msp_plcd.h"
|
||
|
//#include "../msp/iic_sim.h"
|
||
|
#include "../msp/msp_eeprom.h"
|
||
|
#include "../msp/msp_id.h"
|
||
|
|
||
|
|
||
|
#include "../clib/Clib.h"
|
||
|
#include "../clib/bit.h"
|
||
|
|
||
|
//#include "../debug/debug_drv.h"
|
||
|
//#include "../uartcom/uprotocol.h"
|
||
|
//#include "../uartcom/Uartcom0.h"
|
||
|
#include "../ctask/task.h"
|
||
|
#include "../ctask/tick.h"
|
||
|
|
||
|
//#include "../bsp/bsp_led.h"
|
||
|
|
||
|
#include "../bsp/bsp_power.h"
|
||
|
|
||
|
|
||
|
//#include "../bsp/Bsp_debug.h"
|
||
|
|
||
|
|
||
|
//#include "app_yeelink.h"
|
||
|
//#include "app_flow.h"
|
||
|
|
||
|
//#include "app_Gsensor.h"
|
||
|
//#include "app_io.h"
|
||
|
//#include "../tpc/tpc_uart.h"
|
||
|
|
||
|
//#include "stdio.h"
|
||
|
#include "app_paraid.h"
|
||
|
//#include "app_algorithm.h"///
|
||
|
|
||
|
|
||
|
#include "../bsp/bsp_cs1232.h"
|
||
|
#include "../bsp/bsp_485.h"
|
||
|
#include "../app/app_task_uart0.h"
|
||
|
#include "../app/app_task_adc.h"
|
||
|
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
#endif //#ifndef _MAIN_H
|
||
|
|
||
|
|