Skip to content

Get updates #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 48 commits into from
Dec 15, 2016
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
56cd8f6
Add HardwareSerial::write(const char *)
me-no-dev Nov 16, 2016
6d097cd
Add definitions for yield() and optimistic_yield()
me-no-dev Nov 16, 2016
7abb15c
reset i2c cmd buffer before read/write
me-no-dev Nov 16, 2016
c026661
Add TwoWire::write(const char *) (#56)
minyk Nov 17, 2016
c82699a
Make Wire inherit Stream
me-no-dev Nov 17, 2016
c30012a
Add Kconfig for IDF and option to disable HAL mutexes
me-no-dev Nov 18, 2016
5703b76
pull sdkconfig early so IDF does not warn about redefinition
me-no-dev Nov 18, 2016
1252f7f
add "monitor" build target for idf
me-no-dev Nov 18, 2016
58ac6fb
update idf libs
me-no-dev Nov 18, 2016
dbf030f
Add Node32s to boards.txt (#63)
lamloei Nov 21, 2016
67fd652
Create pins_arduino.h for Node32s(#64)
lamloei Nov 21, 2016
d8b2290
Add 'fromString(const char*)', 'fromString(const String)' to IPAddres…
minyk Nov 24, 2016
be2a26b
set SCL to OUTPUT_OPEN_DRAIN
me-no-dev Nov 25, 2016
f4c2135
RTC pins have pull up/down elsewhere
me-no-dev Nov 26, 2016
1d1aeec
simplify WiFi boot procedure to prepare for on-demand stack load
me-no-dev Nov 27, 2016
b82d0e1
latest IDF, 240MHz and BLE enabled libs
me-no-dev Nov 27, 2016
57c3650
Disconnect WiFiClient on destruct
me-no-dev Nov 29, 2016
8904f52
Allow phy to be initialized only if WiFi/BLE is used/enabled
me-no-dev Dec 1, 2016
3c81739
need close(sockfd) before sockfd = -1, "_connected = false and close …
hirotakaster Dec 1, 2016
6db0ee1
Optimize GPIO and account for micros overflow in delayMicroseconds
me-no-dev Dec 2, 2016
49f35ff
use esp_random in WMath.cpp
me-no-dev Dec 2, 2016
e77ec63
Fix deprecation warnings in ESP.cpp
me-no-dev Dec 2, 2016
ee36407
Update IDF libs
me-no-dev Dec 2, 2016
6dc3407
Add correct definitions for word
me-no-dev Dec 5, 2016
ba04076
Move definitions to not conflict with C includes
me-no-dev Dec 5, 2016
ee4a825
Add from-scratch Windows installation instructions
me-no-dev Dec 6, 2016
42c1d58
Update windows.md
me-no-dev Dec 6, 2016
13268b9
Update README.md
me-no-dev Dec 6, 2016
48abb79
Remove autostart define overwrite
me-no-dev Dec 7, 2016
758553a
Add analogRead, touchRead, dacWrite and updated esp-idf
me-no-dev Dec 8, 2016
ddb2541
Update README.md
me-no-dev Dec 8, 2016
35e54f2
Add definitions for ADC, Touch and DAC pins
me-no-dev Dec 8, 2016
d1025b6
Update esp32-hal-i2c.c
me-no-dev Dec 9, 2016
f5d6828
Adjust interrupt numbers for GPIO and Touch
me-no-dev Dec 9, 2016
4e458fd
Initial Timers driver
me-no-dev Dec 9, 2016
8e7d00b
i2c revert to old fifo write
me-no-dev Dec 9, 2016
d8e74f2
Format README contents; add instructions for @PlatformIO (#88)
ivankravets Dec 10, 2016
54b1b8b
const correctness (#89)
Palatis Dec 11, 2016
a6c02bc
Add some missing defines
me-no-dev Dec 12, 2016
c336989
Add Gitter badge (#96)
gitter-badger Dec 13, 2016
551e422
Fix typos (#95)
eroniki Dec 13, 2016
7defc6e
Update README.md
me-no-dev Dec 13, 2016
e92634a
Add analogSetAttenuation and analogSetPinAttenuation
me-no-dev Dec 14, 2016
c19fc06
Hopefully fix I2C/Wire
me-no-dev Dec 14, 2016
917a4fd
allow setting internal pull resistors for any mode and enable them fo…
me-no-dev Dec 14, 2016
04e0902
Wire: if we are reading only one byte, do not send empty read command
me-no-dev Dec 14, 2016
b86fb30
cleanup read commands
me-no-dev Dec 14, 2016
668c381
Wire: wait while bus is busy if ack failed
me-no-dev Dec 14, 2016
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
set SCL to OUTPUT_OPEN_DRAIN
  • Loading branch information
me-no-dev authored Nov 25, 2016
commit be2a26b3ffa9b0cca8b772baa5a6aa654e4422df
2 changes: 1 addition & 1 deletion cores/esp32/esp32-hal-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ i2c_err_t i2cAttachSCL(i2c_t * i2c, int8_t scl)
if(i2c == NULL){
return I2C_ERROR_DEV;
}
pinMode(scl, OUTPUT);
pinMode(scl, OUTPUT_OPEN_DRAIN);
pinMatrixOutAttach(scl, I2C_SCL_IDX(i2c->num), false, false);
pinMatrixInAttach(scl, I2C_SCL_IDX(i2c->num), false);
return I2C_ERROR_OK;
Expand Down