gr533x_hal_def.h File Reference

This file contains HAL common definitions, enumeration, macros and structures definitions. More...

#include "gr533x.h"
#include <stdio.h>

Go to the source code of this file.

Macros

#define HAL_NEVER_TIMEOUT   (0xFFFFFFFFU)
 HAL never timeout definition. More...
 
#define HAL_MAX_DELAY   (40000U)
 HAL max delay definition. Unit is millisecond. 40000ms is the max delay time in 96MHz system clock. More...
 
#define HAL_TIMEOUT_INIT()
 Timeout module init. This macro must be used in conjunction with the HAL_TIMEOUT_DEINIT macro. More...
 
#define HAL_TIMEOUT_DEINIT()
 Timeout module deinit. This macro must be used in conjunction with the HAL_TIMEOUT_INIT macro. More...
 
#define HAL_TIMEOUT_GET_TICK()   (DWT->CYCCNT)
 Timeout module get current tick. More...
 
#define HAL_IS_BIT_SET(REG, BIT)   (((REG) & (BIT)) != RESET)
 Check whether the bits of register are set. More...
 
#define HAL_IS_BIT_CLR(REG, BIT)   (((REG) & (BIT)) == RESET)
 Check whether the bits of register are clear. More...
 
#define __HAL_LINKDMA(__HANDLE__, __PPP_DMA_FIELD_, __DMA_HANDLE_)
 Link DMA handle and peripheral handle. More...
 
#define __HAL_RESET_HANDLE_STATE(__HANDLE__)   ((__HANDLE__)->state = 0U)
 Reset the Handle's State field. More...
 
#define __HAL_LOCK(__HANDLE__)
 Lock peripheral handle. More...
 
#define __HAL_UNLOCK(__HANDLE__)
 Unlock peripheral handle. More...
 
#define __ALIGN_END
 

Enumerations

enum  hal_status_t {
  HAL_OK = 0x00U,
  HAL_ERROR = 0x01U,
  HAL_BUSY = 0x02U,
  HAL_TIMEOUT = 0x03
}
 HAL Status structures definition. More...
 
enum  hal_lock_t {
  HAL_UNLOCKED = 0x00U,
  HAL_LOCKED = 0x01
}
 HAL Lock structures definition. More...
 

Detailed Description

This file contains HAL common definitions, enumeration, macros and structures definitions.

Author
BLE Driver Team
Attention
#####Copyright (c) 2019 GOODIX All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of GOODIX nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Definition in file gr533x_hal_def.h.