2019-04-29 21:39:56 +08:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @file IAP/IAP_Main/Inc/common.h
|
|
|
|
* @author MCD Application Team
|
|
|
|
* @brief This file provides all the headers of the common functions.
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
2021-12-14 16:25:05 +08:00
|
|
|
* Copyright (c) 2016 STMicroelectronics.
|
|
|
|
* All rights reserved.
|
2019-04-29 21:39:56 +08:00
|
|
|
*
|
2021-12-14 16:25:05 +08:00
|
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
|
|
* in the root directory of this software component.
|
|
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
2019-04-29 21:39:56 +08:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
|
|
#ifndef __COMMON_H
|
|
|
|
#define __COMMON_H
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "stm32f7xx.h"
|
|
|
|
#include "stm32f769i_eval.h"
|
|
|
|
|
|
|
|
/* Exported types ------------------------------------------------------------*/
|
|
|
|
/* Exported constants --------------------------------------------------------*/
|
|
|
|
/* Constants used by Serial Command Line Mode */
|
|
|
|
#define TX_TIMEOUT ((uint32_t)100)
|
|
|
|
#define RX_TIMEOUT ((uint32_t)0xFFFFFFFF)
|
|
|
|
|
|
|
|
/* Exported macro ------------------------------------------------------------*/
|
|
|
|
#define IS_CAP_LETTER(c) (((c) >= 'A') && ((c) <= 'F'))
|
|
|
|
#define IS_LC_LETTER(c) (((c) >= 'a') && ((c) <= 'f'))
|
|
|
|
#define IS_09(c) (((c) >= '0') && ((c) <= '9'))
|
|
|
|
#define ISVALIDHEX(c) (IS_CAP_LETTER(c) || IS_LC_LETTER(c) || IS_09(c))
|
|
|
|
#define ISVALIDDEC(c) IS_09(c)
|
|
|
|
#define CONVERTDEC(c) (c - '0')
|
|
|
|
|
|
|
|
#define CONVERTHEX_ALPHA(c) (IS_CAP_LETTER(c) ? ((c) - 'A'+10) : ((c) - 'a'+10))
|
|
|
|
#define CONVERTHEX(c) (IS_09(c) ? ((c) - '0') : CONVERTHEX_ALPHA(c))
|
|
|
|
|
|
|
|
/* Exported functions ------------------------------------------------------- */
|
|
|
|
void Int2Str(uint8_t *p_str, uint32_t intnum);
|
|
|
|
uint32_t Str2Int(uint8_t *inputstr, uint32_t *intnum);
|
|
|
|
void Serial_PutString(uint8_t *p_string);
|
|
|
|
HAL_StatusTypeDef Serial_PutByte(uint8_t param);
|
|
|
|
|
|
|
|
#endif /* __COMMON_H */
|
|
|
|
|