31 lines
580 B
C
31 lines
580 B
C
#ifndef __SX1281_HEADER_H__
|
|
#define __SX1281_HEADER_H__
|
|
|
|
#include "stdio.h"
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "stm32f1xx_hal.h"
|
|
#include "stm32f1xx_it.h"
|
|
#include "sx1281_boards.h"
|
|
#include "sx1281_driver_gpio.h"
|
|
#include "sx1281_driver_spi.h"
|
|
#include "sx1281_driver_uart.h"
|
|
|
|
/* Exported macro ----------------------------------------------------------- */
|
|
|
|
void SX1281_BSPInit( void );
|
|
|
|
void HwSetLowPower( void );
|
|
|
|
|
|
/* ----------------SX1281 debug--------------- */
|
|
#define SX1281_VIEW
|
|
/* --------------SX1281 debug end------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __HW_H__
|