10000 align with upstream by Jason2866 · Pull Request #21 · Jason2866/arduino-esp32 · GitHub
[go: up one dir, main page]

Skip to content

align with upstream #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 29 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0b10c8b
[Docs] Added the guideline for documentation (#6409)
pedrominatel Mar 18, 2022
8fe0efe
Fix boot freeze when trying to init PSRAM on Pico D4 (#6434)
s-hadinger Mar 23, 2022
77e9531
Adds HardwareSerial::setTxBufferSize() (#6383)
gonzabrusco Mar 28, 2022
6014ff4
Fixes USB CDC setRxBufferSize(), begin(), _onRX() (#6413)
SuGlider Mar 28, 2022
c25feca
Change "python" to "python3" (#6448)
tomorrow56 Mar 28, 2022
905f8f2
Warns about SSP only available for ESP32 (#6455)
SuGlider Mar 28, 2022
7b89b39
Edited VFSFileImpl::read to use both read/fread (#6456)
P-R-O-C-H-Y Mar 28, 2022
528c071
Adding sectorsize() and numSectors() to SD (#6457)
tobozo Mar 28, 2022
e03a9f5
(boards.txt) Add partition scheme menu for WeMos WiFi&Bluetooth Batte…
garubi Mar 28, 2022
3f79097
Add Preferences library API and tutorial documents (#6442)
Xylopyrographer Mar 28, 2022
8ee5f0a
Esp32 s3 support (#6341)
me-no-dev Mar 28, 2022
ab34321
add variant init code for the feather s2 tft (#6447)
ladyada Mar 28, 2022
c26e3f4
Adds HardwareSerial::setRxTimeout() (#6397)
gonzabrusco Mar 28, 2022
51040cc
Fix linking failure for space in path in PlatformIO builder scripts (…
maxgerhardt Mar 28, 2022
9d188f5
Add S3 in Headline (#6491)
Jason2866 Mar 28, 2022
aa783e6
Reordering - HardwareSerial Constructor (#6492)
SuGlider Mar 28, 2022
31510f4
IDF release/v4.4 c29343eb94 (#6493)
me-no-dev Mar 28, 2022
5c5a112
Re-apply #6464
me-no-dev Mar 29, 2022
7c9b837
Fix Reading MAC from efuse for ESP32 Arduino 2.x.x (#6458) (#6459)
smuellener Mar 29, 2022
1e388a2
Update toolchain to gcc8_4_0-esp-2021r2-patch3 and esptool to 3.3 (#6…
me-no-dev Mar 29, 2022
ab197e1
Fix - wrong path to file (#6505)
P-R-O-C-H-Y Mar 31, 2022
a1409ef
add package.json to release zip (#6501)
Jason2866 Apr 4, 2022
6b72fee
add S3 board (#6518)
Jason2866 Apr 4, 2022
5d6b9d0
Compiler error (#6523)
nimaltd Apr 4, 2022
6fe1c4c
Correct less- and greater-than operators (#6521)
BrianRossmajer Apr 4, 2022
f1acc43
Fix Ticker::Active crash if _ticker null (#6511) (#6513)
GitNik1 Apr 4, 2022
d4e2029
Add support for ArduinoIDE 2.0.0 (#6506)
me-no-dev Apr 4, 2022
7dc8ca4
Update OTA Command for IDE 2.0
me-no-dev Apr 5, 2022
6cfe461
Amend "GPIO refactoring (#6259)" (#6527)
dok-net Apr 5, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next 8000 Next commit
Reordering - HardwareSerial Constructor (espressif#6492)
  • Loading branch information
SuGlider authored Mar 28, 2022
commit aa783e6ac401492e1d9af16b81150d04ab3d081b
8 changes: 4 additions & 4 deletions cores/esp32/HardwareSerial.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,18 +161,18 @@ class HardwareSerial: public Stream
size_t _rxBufferSize;
size_t _txBufferSize;
OnReceiveCb _onReceiveCB;
OnReceiveErrorCb _onReceiveErrorCB;
// _onReceive and _rxTimeout have be consistent when timeout is disabled
bool _onReceiveTimeout;
uint8_t _rxTimeout;
OnReceiveErrorCb _onReceiveErrorCB;
TaskHandle_t _eventTask;
#if !CONFIG_DISABLE_HAL_LOCKS
SemaphoreHandle_t _lock;
#endif

void _createEventTask(void *args);
void _destroyEventTask(void);
static void _uartEventTask(void *args);
#if !CONFIG_DISABLE_HAL_LOCKS
SemaphoreHandle_t _lock;
#endif
};

extern void serialEventRun(void) __attribute__((weak));
Expand Down
0