8000 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
Show file tree
Hide file tree
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 (# 8000 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 Next commit
Fix linking failure for space in path in PlatformIO builder scripts (e…
…spressif#6464)

Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
  • Loading branch information
maxgerhardt and me-no-dev authored Mar 28, 2022
commit 51040cc4ebf95161d87d9ccf20bd4d377d6246e7
2 changes: 1 addition & 1 deletion tools/platformio-build-esp32.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"-u", "newlib_include_pthread_impl",
"-u", "newlib_include_assert_impl",
"-u", "__cxa_guard_dummy",
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
],

CPPPATH=[
Expand Down
2 changes: 1 addition & 1 deletion tools/platformio-build-esp32c3.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"-u", "newlib_include_pthread_impl",
"-u", "newlib_include_assert_impl",
"-u", "__cxa_guard_dummy",
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
],

CPPPATH=[
Expand Down
2 changes: 1 addition & 1 deletion tools/platformio-build-esp32s2.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"-u", "newlib_include_pthread_impl",
"-u", "newlib_include_assert_impl",
"-u", "__cxa_guard_dummy",
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
],

CPPPATH=[
Expand Down
2 changes: 1 addition & 1 deletion tools/platformio-build-esp32s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"-u", "newlib_include_pthread_impl",
"-u", "newlib_include_assert_impl",
"-u", "__cxa_guard_dummy",
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
],

CPPPATH=[
Expand Down
0