fix uart_posix: bytecound must be 32b

This commit is contained in:
Philippe Teuwen 2019-04-21 01:05:02 +02:00
commit 4aa1b49493
4 changed files with 12 additions and 10 deletions

View file

@ -319,7 +319,7 @@ __attribute__((force_align_arg_pointer))
#endif
*uart_communication(void *targ) {
communication_arg_t *connection = (communication_arg_t *)targ;
size_t rxlen;
uint32_t rxlen;
PacketResponseNG rx;
PacketResponseNGRaw rx_raw;