Skip to content

Commit

Permalink
Fix uart function prototypes (#15162)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Nov 15, 2021
1 parent 56e3f06 commit ca4b54b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platforms/avr/drivers/uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ void uart_write(uint8_t data);

uint8_t uart_read(void);

void uart_transmit(const char *data, uint16_t length);
void uart_transmit(const uint8_t *data, uint16_t length);

void uart_receive(char *data, uint16_t length);
void uart_receive(uint8_t *data, uint16_t length);

bool uart_available(void);

0 comments on commit ca4b54b

Please sign in to comment.