aaaaaaaaa

Dependencies:   QEI mbed

Fork of MainBoard2018_Auto_Master_A_new by Akihiro Nakabayashi

Communication/RS485/RS485.h

Committer:
kishibekairohan
Date:
2018-10-21
Revision:
14:dfcec98f5aa9
Parent:
0:669ef71cba68

File content as of revision 14:dfcec98f5aa9:

#ifndef RS485_H_
#define RS485_H_

namespace RS485 {
    #define SELECTBIT_PIN PB_7

    #define RS485UART_TX PA_9
    #define RS485UART_RX PA_10
    
    class RS485 {
        public:
        static void Initialize();
    };
}

#endif