8000 esp32/mods/machuart: Increased Uart Rx Buffer to 4KB for FIPYs and GPYs · gordol/pycom-micropython-sigfox@46a2425 · GitHub
[go: up one dir, main page]

Skip to content

Commit 46a2425

Browse files
author
iwahdan88
committed
esp32/mods/machuart: Increased Uart Rx Buffer to 4KB for FIPYs and GPYs
1 parent 7fafc08 commit 46a2425

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

esp32/mods/machuart.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,12 @@
6161

6262
#define MACHUART_TX_WAIT_US(baud) ((MACHUART_FRAME_TIME_US(baud)) + 1)
6363
#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
6469

65-
#define MACHUART_RX_BUFFER_LEN (512)
6670
#define MACHUART_TX_FIFO_LEN (UART_FIFO_LEN)
6771

6872
// interrupt triggers

esp32/pycom_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef VERSION_H_
1111
#define VERSION_H_
1212

13-
#define SW_VERSION_NUMBER "1.18.0"
13+
#define SW_VERSION_NUMBER "1.18.0.r1"
1414

1515
#define LORAWAN_VERSION_NUMBER "1.0.2"
1616

0 commit comments

Comments
 (0)
0