plieningerweb / esp8266-software-uart

Software UART / Software Serial / SoftUart for ESP8266 to connect more than one UART
MIT License
124 stars 42 forks source link

Missing definitions in header #11

Closed MartijnBraam closed 7 years ago

MartijnBraam commented 7 years ago

I'm not very experienced with C/C++ (at all) but shouldn't these lines be added to the softuart.h?

void Softuart_SetPinRx(Softuart *s, uint8_t gpio_id);
void Softuart_SetPinTx(Softuart *s, uint8_t gpio_id);
void Softuart_EnableRs485(Softuart *s, uint8_t gpio_id);
void Softuart_Init(Softuart *s, uint32_t baudrate);

The compiler seems to make it work because other stuff is defined in the header that includes the .c file but the syntax highlighting in clion keeps annoying me that the functions don't exist.

plieningerweb commented 7 years ago

closed with merged pull request