8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fafc08 commit 46a2425Copy full SHA for 46a2425
esp32/mods/machuart.c
@@ -61,8 +61,12 @@
61
62
#define MACHUART_TX_WAIT_US(baud) ((MACHUART_FRAME_TIME_US(baud)) + 1)
63
#define MACHUART_TX_MAX_TIMEOUT_MS (5)
64
+#if defined(FIPY) || defined(GPY)
65
+ #define MACHUART_RX_BUFFER_LEN (4096)
66
+#else
67
+ #define MACHUART_RX_BUFFER_LEN (512)
68
+#endif
69
-#define MACHUART_RX_BUFFER_LEN (512)
70
#define MACHUART_TX_FIFO_LEN (UART_FIFO_LEN)
71
72
// interrupt triggers
esp32/pycom_version.h
@@ -10,7 +10,7 @@
10
#ifndef VERSION_H_
11
#define VERSION_H_
12
13
-#define SW_VERSION_NUMBER "1.18.0"
+#define SW_VERSION_NUMBER "1.18.0.r1"
14
15
#define LORAWAN_VERSION_NUMBER "1.0.2"
16
0 commit comments