File tree 2 files changed +12
-12
lines changed
2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11
11
#include " driver/uart.h"
12
12
#include " freertos/queue.h"
13
13
14
- #ifndef ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE
15
- #define ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE 2048
16
- #endif
17
-
18
- #ifndef ARDUINO_SERIAL_EVENT_TASK_PRIORITY
19
- #define ARDUINO_SERIAL_EVENT_TASK_PRIORITY (configMAX_PRIORITIES - 1 )
20
- #endif
21
-
22
- #ifndef ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE
23
- #define ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE -1
24
- #endif
25
-
26
14
#if (SOC_UART_LP_NUM >= 1)
27
15
#define UART_HW_FIFO_LEN (uart_num ) ((uart_num < SOC_UART_HP_NUM) ? SOC_UART_FIFO_LEN : SOC_LP_UART_FIFO_LEN)
28
16
#else
Original file line number Diff line number Diff line change @@ -97,15 +97,27 @@ typedef enum {
97
97
} hardwareSerial_error_t;
98
98
99
99
#ifndef ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE
100
+ #ifndef CONFIG_ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE
100
101
#define ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE 2048
102
+ #else
103
+ #define ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE CONFIG_ARDUINO_SERIAL_EVENT_TASK_STACK_SIZE
104
+ #endif
101
105
#endif
102
106
103
107
#ifndef ARDUINO_SERIAL_EVENT_TASK_PRIORITY
108
+ #ifndef CONFIG_ARDUINO_SERIAL_EVENT_TASK_PRIORITY
104
109
#define ARDUINO_SERIAL_EVENT_TASK_PRIORITY (configMAX_PRIORITIES - 1 )
110
+ #else
111
+ #define ARDUINO_SERIAL_EVENT_TASK_PRIORITY CONFIG_ARDUINO_SERIAL_EVENT_TASK_PRIORITY
112
+ #endif
105
113
#endif
106
114
107
115
#ifndef ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE
116
+ #ifndef CONFIG_ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE
108
117
#define ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE -1
118
+ #else
119
+ #define ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE CONFIG_ARDUINO_SERIAL_EVENT_TASK_RUNNING_CORE
120
+ #endif
109
121
#endif
110
122
111
123
// UART0 pins are defined by default by the bootloader.
You can’t perform that action at this time.
0 commit comments