#ifndef _RS485_H #define _RS485_H /* * Loosely modelled after AVR-RS485 by Yoshinori Kohyama (http://algobit.jp/), * available at https://github.com/kohyama/AVR-RS485/ * * All bugs by Jan "Yenya" Kasprzak :-) */ void rs485_init(); void rs485_send(char *p); #endif /* _RS485_H */