#ifndef RS485_H_
#define RS485_H_

namespace RS485 {
    #define SELECTBIT_PIN PB_3

    #define RS485UART_TX PA_9
    #define RS485UART_RX PA_10
    
    class RS485 {
        public:
        static void Initialize();
    };
}

#endif
