Browse Source

Fix uart function prototypes (#15162)

pull/15167/head
Drashna Jaelre 2 years ago
committed by GitHub
parent
commit
ca4b54bb30
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      platforms/avr/drivers/uart.h

+ 2
- 2
platforms/avr/drivers/uart.h View File

@ -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);

Loading…
Cancel
Save