Skip to content

S3 tasmota work #120

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 27 commits into from
Mar 28, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9b9744f
publish.yml: Limit the running scope of the publish Workflow. (#6428)
Ouss4 Mar 14, 2022
e87b87d
Add missing include in AsyncUDP.h (#6412)
mrengineer7777 Mar 14, 2022
ba8024c
Some board variant fixes (#6411)
ladyada Mar 14, 2022
d977359
Added another overloaded WiFiSTAClass::begin() function that provides…
jpswensen Mar 15, 2022
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
ca341e3
remove Rainmaker
Jason2866 Mar 28, 2022
0bb7afb
Merge branch 'orig_master_espressif' into s3_tasmota_work
Jason2866 Mar 28, 2022
411c54d
Update boards.txt
Jason2866 Mar 28, 2022
9945886
Update HardwareSerial.h
Jason2866 Mar 28, 2022
e0b9957
Update USBCDC.cpp
Jason2866 Mar 28, 2022
9e8f246
Update esptool.py
Jason2866 Mar 28, 2022
a88e3cd
Update platformio-build-esp32.py
Jason2866 Mar 28, 2022
fe779f4
Update platformio-build-esp32c3.py
Jason2866 Mar 28, 2022
b875147
Update platformio-build-esp32s2.py
Jason2866 Mar 28, 2022
97bac88
Update platformio-build-esp32s3.py
Jason2866 Mar 28, 2022
1e9112d
fix merge errors
Jason2866 Mar 28, 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
add variant init code for the feather s2 tft (espressif#6447)
  • Loading branch information
ladyada authored Mar 28, 2022
commit ab34321a16c4534cf16abbaa786fc4065a0deb68
7 changes: 6 additions & 1 deletion variants/adafruit_feather_esp32s2_tft/variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ extern "C" {
// Initialize variant/board, called before setup()
void initVariant(void)
{

// This board has power control pins, and we must set them to output and high
// in order to enable the NeoPixels, TFT & I2C
pinMode(NEOPIXEL_POWER, OUTPUT);
digitalWrite(NEOPIXEL_POWER, HIGH);
pinMode(TFT_I2C_POWER, OUTPUT);
digitalWrite(TFT_I2C_POWER, HIGH);
}

}