Merge pull request #9192 from haukepetersen/rm_stdio_uartunusedfunctiondef

sys/uart_stdio: remove unused rx_cb from header
This commit is contained in:
Hauke Petersen 2018-05-25 12:41:20 +02:00 committed by GitHub
commit c9996bfa03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,14 +76,6 @@ int uart_stdio_read(char* buffer, int len);
*/
int uart_stdio_write(const char* buffer, int len);
/**
* @brief internal callback for periph/uart drivers
*
* @param[in] arg (unused)
* @param[in] data character that has been received
*/
void uart_stdio_rx_cb(void *arg, uint8_t data);
#ifdef __cplusplus
}
#endif