You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
303 B
14 lines
303 B
1 year ago
|
#ifndef BSP_lora_H
|
||
|
#define BSP_lora_H
|
||
|
|
||
|
#include "../bsp/bsp_config.h"
|
||
|
#include "msp_uart1.h"
|
||
|
|
||
|
//485_RE P33
|
||
|
//485_DE P32
|
||
|
///#define D_485_TX() P55 = 1;// >750us
|
||
|
///#define D_485_RX() P55 = 0;
|
||
|
#define D_cmd_filter_lora 0xfE
|
||
|
extern void L2_lora_init(void);
|
||
|
extern void L3_lora_debug(u8 filter);
|
||
|
#endif
|