reduced buffers, not really needed

This commit is contained in:
2017-09-07 02:27:05 +02:00
parent 48cd9c1a2a
commit e46abe175f
4 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -8,8 +8,8 @@
#include <esp8266.h>
#include <uart_register.h>
#define UART_TX_BUFFER_SIZE 1024 //Ring buffer length of tx buffer
#define UART_RX_BUFFER_SIZE 1024 //Ring buffer length of rx buffer
#define UART_TX_BUFFER_SIZE 512 //Ring buffer length of tx buffer
#define UART_RX_BUFFER_SIZE 512 //Ring buffer length of rx buffer
struct UartBuffer {
uint32 UartBuffSize;