27 lines
393 B
C
27 lines
393 B
C
#ifndef __HW_H__
|
|
#define __HW_H__
|
|
|
|
#include "stdio.h"
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "stm32f1xx_hal.h"
|
|
#include "stm32f1xx_it.h"
|
|
#include "hw-spi.h"
|
|
#include "hw-uart.h"
|
|
#include "hw-gpio.h"
|
|
|
|
#include "sx1281.h"
|
|
#include "sx1281-hal.h"
|
|
|
|
#define BOARD_NUCLEO_L476RG
|
|
|
|
#include "boards.h"
|
|
|
|
#define USE_DMA
|
|
|
|
void HwInit( void );
|
|
|
|
void HwSetLowPower( void );
|
|
|
|
#endif // __HW_H__
|