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.
72 lines
1.5 KiB
72 lines
1.5 KiB
//////////////////////////////////////////////////////////////////////////
|
|
/// 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/bsp_config_delay.h"
|
|
#include "../bsp/bsp_led.h"
|
|
// #include "../bsp/bsp_key.h"
|
|
#include "../bsp/bsp_key_nonblock.h"
|
|
#include "../bsp/bsp_rfid.h"
|
|
#include "../bsp/chipid.h"
|
|
#include "../bsp/cs1232.h"
|
|
#include "../bsp/rs485.h"
|
|
|
|
#include "../msp/uart0.h"
|
|
#include "../msp/uart2.h"
|
|
#include "../msp/uart3.h"
|
|
#include "../msp/uart4.h"
|
|
#include "../msp/eeprom.h"
|
|
|
|
#include "../app/app_config.h"
|
|
#include "../app/task_debug.h"
|
|
#include "../app/task_nfc.h"
|
|
#include "../app/task_rfid.h"
|
|
#include "../app/task_rs485.h"
|
|
#include "../app/task_bled.h"
|
|
// #include "../app/task_btn.h"
|
|
#include "../app/task_btn_nonblock.h"
|
|
#include "../app/task_nfc_auth.h"
|
|
#include "../app/task_low_power.h"
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
#endif //#ifndef _MAIN_H
|
|
|
|
|
|
|