Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PN532 UART support + macOS support #633

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Add header declaration
  • Loading branch information
samyk committed Jan 17, 2021
commit f1b6ee4c0627b72c003424781357d1f6730d43b9
1 change: 1 addition & 0 deletions libnfc/buses/uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ uint32_t uart_get_speed(const serial_port sp);

int uart_receive(serial_port sp, uint8_t *pbtRx, const size_t szRx, void *abort_p, int timeout);
int uart_send(serial_port sp, const uint8_t *pbtTx, const size_t szTx, int timeout);
int uart_send_single(serial_port sp, const uint8_t *pbtTx, const size_t szTx, int timeout);

char **uart_list_ports(void);

Expand Down