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.
|
|
|
#ifndef BSP_485_H
|
|
|
|
#define BSP_485_H
|
|
|
|
|
|
|
|
#include "../bsp/bsp_config.h"
|
|
|
|
#include "../msp/msp_uart0.h"
|
|
|
|
|
|
|
|
//485_RE P33
|
|
|
|
//485_DE P32
|
|
|
|
#define D_485_TX() P32 = 1;// >750us
|
|
|
|
#define D_485_RX() P32 = 0;
|
|
|
|
|
|
|
|
extern void L2_485_init(void);
|
|
|
|
#endif
|