90 lines
2.4 KiB
C
90 lines
2.4 KiB
C
/**
|
|
******************************************************************************
|
|
* @file Project/STM32F0xx_StdPeriph_Templates/main.h
|
|
* @author MCD Application Team
|
|
* @version V1.5.0
|
|
* @date 05-December-2014
|
|
* @brief Header for main.c module
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2>
|
|
*
|
|
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
|
|
* You may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at:
|
|
*
|
|
* http://www.st.com/software_license_agreement_liberty_v2
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
//#define DEBUG
|
|
//#define USE_WIFI
|
|
#define USE_LORA
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32f0xx.h"
|
|
#include "usart_dma.h"
|
|
#include "bsp_tim.h"
|
|
|
|
#ifdef USE_STM320518_EVAL
|
|
#include "stm320518_eval.h"
|
|
#include "stm320518_eval_lcd.h"
|
|
#endif /* USE_STM320518_EVAL */
|
|
|
|
#ifdef USE_STM32072B_EVAL
|
|
#include "stm32072b_eval.h"
|
|
#include "stm32072b_eval_lcd.h"
|
|
#endif /* USE_STM32072B_EVAL */
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
|
|
enum LORAWAN_STATE{
|
|
LORA_RESET = 0,
|
|
LORA_P2P,
|
|
LORA_NOT_JOIN,
|
|
LORA_JOINED
|
|
};
|
|
|
|
enum TIME_STATE{
|
|
CONFIG=0,
|
|
STATE,
|
|
SEND,
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
void HexArrayToString(unsigned char *hexarray,int length,unsigned char *string);
|
|
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
|
|
|
|
/* Exported functions ------------------------------------------------------- */
|
|
|
|
void IWDG_Config(uint8_t prv ,uint16_t rlv);
|
|
void IWDG_Feed(void);
|
|
|
|
void DataSend(void);
|
|
void CheckState(void);
|
|
void NetConfig(void);
|
|
|
|
#endif /* __MAIN_H */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|