diff --git a/uart b/uart index 59841f2..21f2eb3 100755 Binary files a/uart and b/uart differ diff --git a/uart.c b/uart.c index a322424..b3dc95f 100644 --- a/uart.c +++ b/uart.c @@ -56,8 +56,8 @@ sleep(1); // Bytes empfangen if (uart0_filestream != -1) { - unsigned char BUF_RX[50]; - int rx_length = read(uart0_filestream, (void*)BUF_RX, 50); + unsigned char BUF_RX[1024]; + int rx_length = read(uart0_filestream, (void*)BUF_RX, 1024); if (rx_length < 0) { printf("[ERROR] UART RX\n");