Skip to content

Rebase #1

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

Merged
merged 34 commits into from
Jul 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
8b01b9e
Change esptool version notation
me-no-dev Jul 3, 2018
12ca9e8
Port UART reset fix from ESP-IDF (#1408)
chemicstry Jul 3, 2018
4e5cbda
Add declarations for all Serial, SPI and Wire buses
me-no-dev Jul 3, 2018
0161e28
Added OTAWebUpdater Doc (#1583)
karan6190 Jul 3, 2018
2fe9652
"fix" SPI
me-no-dev Jul 3, 2018
659c8ad
Fix TelnetToSerial sketch
me-no-dev Jul 3, 2018
5e46c9b
Add Wrover Support and Option to enable SPIRAM
me-no-dev Jul 3, 2018
a835bb2
Add missing flag to fix psram issues
me-no-dev Jul 4, 2018
9f8f057
* relnotes handling update (#1592)
pacucha42 Jul 4, 2018
95b8754
Make Stream functions if File to not wait for timeout
me-no-dev Jul 5, 2018
bad5390
Prevent exceptions in WiFi if not yet started
me-no-dev Jul 5, 2018
05111bb
fix case where library source subfolders are not compiled when used a…
me-no-dev Jul 5, 2018
871dd18
Print to debug the IP address obtained by DHCP
me-no-dev Jul 5, 2018
8afdd71
Add missing event string to WiFi events
me-no-dev Jul 5, 2018
b0c6991
Small adjustments to the web server
me-no-dev Jul 5, 2018
9efecc1
Implement RX buffer for WiFi client to speed up small reads
me-no-dev Jul 5, 2018
9f6d0d2
EEPROM.readstring was returning an extra character (#1609)
lbernstone Jul 7, 2018
901a341
BluetoothSerial: set COD to be compatible with macOS (#1304) (#1556)
gohai Jul 7, 2018
c77aed4
Allow using argument with attachInterrupt (#1535)
bertmelis Jul 7, 2018
9925772
* update 'version' in platform.txt (#1619)
pacucha42 Jul 10, 2018
79010b6
Add XinaBox CW02 to supported boards (#1620)
brendanvanbreda Jul 10, 2018
3e16058
Fix WiFi Client not properly reporting connected state
me-no-dev Jul 10, 2018
c1a94b5
Fix wrong event description
me-no-dev Jul 10, 2018
4e9d1ee
Fix connected to be wrongly reported in WiFiClient
me-no-dev Jul 10, 2018
ff90778
Fix HTTP client returning disconnected when there is still data avalable
me-no-dev Jul 10, 2018
ddfeae9
Fix AsyncUDP server exception
me-no-dev Jul 11, 2018
28a410d
Spurious Interrupts Temporary fix 20180711 (#1625)
stickbreaker Jul 12, 2018
e63aa40
Enable PSRAM builds when used as IDF component
me-no-dev Jul 15, 2018
44f5a4d
Fix Client returning disconnected because of VFS errors
me-no-dev Jul 16, 2018
cbd4dc5
Add ALKS board variant (#1643)
cleveHEX Jul 16, 2018
c830511
EEPROM library: Move #include of Arduino.h to header file (#1641)
per1234 Jul 16, 2018
b14f82b
Release notes formatting update (#1634)
pacucha42 Jul 16, 2018
05d72f9
fix WiFi STA going into loop in some cases of disconnect
me-no-dev Jul 16, 2018
e157ec0
expose post args during upload (#1650)
Jul 17, 2018
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
2 changes: 1 addition & 1 deletion Makefile.projbuild
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif
BOOT_APP_BIN_FLASH_CMD = $(ESPTOOLPY_SERIAL) write_flash $(BOOT_APP_BIN_OFFSET) $(BOOT_APP_BIN_PATH)
ESPTOOL_ALL_FLASH_ARGS += $(BOOT_APP_BIN_OFFSET) $(BOOT_APP_BIN_PATH)

CPPFLAGS += -DARDUINO=10800 -DESP32=1 -DARDUINO_ARCH_ESP32=1
CPPFLAGS += -DARDUINO=10800 -DESP32=1 -DARDUINO_ARCH_ESP32=1 -DBOARD_HAS_PSRAM

boot-app0:
@echo "Rebooting to APP0"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Most of the framework is implemented. Most noticable is the missing analogWrite.
- [Using PlatformIO](docs/platformio.md)
- [Building with make](docs/make.md)
- [Using as ESP-IDF component](docs/esp-idf_component.md)
- [Using OTAWebUpdater](docs/OTAWebUpdate/OTAWebUpdate.md)

#### Decoding exceptions

Expand Down
Loading