8000 Merge HEAD of release-candidate 1.20.0 · pycom/pycom-micropython-sigfox@a6ebe1e · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit a6ebe1e

Browse files
author
iwahdan88
committed
Merge HEAD of release-candidate 1.20.0
1 parent 87f2d8b commit a6ebe1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esp32/lte/lteppp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ static void TASK_LTE (void *pvParameters) {
428428
uart_get_buffered_data_len(LTE_UART_ID, &rx_len);
429429
if (rx_len > 0) {
430430
// try to read up to the size of the buffer
431-
rx_len = uart_read_bytes(LTE_UART_ID, (uint8_t *)lteppp_trx_buffer, sizeof(lteppp_trx_buffer),
431+
rx_len = uart_read_bytes(LTE_UART_ID, (uint8_t *)lteppp_trx_buffer, sizeof(lteppp_trx_buffer),
432432
LTE_TRX_WAIT_MS(sizeof(lteppp_trx_buffer)) / portTICK_RATE_MS);
433433
if (rx_len > 0) {
434434
pppos_input_tcpip(lteppp_pcb, (uint8_t *)lteppp_trx_buffer, rx_len);

0 commit comments

Comments
 (0)
0