Skip to content
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

v3.3.1 #4

Merged
merged 25 commits into from
May 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
bc0c5f9
Detect OEM ESP32
Jason2866 Mar 19, 2022
aada744
version "3.2.2"
Jason2866 Mar 19, 2022
698d599
Delete release_esptool_pypi.yml
Jason2866 Mar 19, 2022
6543719
No windows since no signing secrets
Jason2866 Mar 19, 2022
d76d259
remove signing
Jason2866 Mar 19, 2022
d6cde56
Delete new_prs.yml
Jason2866 Mar 19, 2022
7a690b7
Delete issue_comment.yml
Jason2866 Mar 19, 2022
b632f3a
Delete new_issues.yml
Jason2866 Mar 19, 2022
5939c0e
checkout v2
Jason2866 Mar 19, 2022
197072c
macos-10.15
Jason2866 Mar 20, 2022
54c0a81
really macos-10.15
Jason2866 Mar 20, 2022
262ce17
fix S3 bootloader patching
Jason2866 Mar 21, 2022
baaca1a
v3.2.3
Jason2866 Mar 21, 2022
76d5553
Merge pull request #1 from espressif/master
Jason2866 Mar 21, 2022
8352d21
Update version to v3.3.1-dev
radimkarnis Mar 23, 2022
aca9d70
Flasher stub: Add wrapper for USB interrupt handler to fix ESP32-S3 U…
dobairoland Mar 22, 2022
0d7f322
espefuse: Adds revision eFuses
KonstantinKondrashov Mar 17, 2022
735a8cc
esptool: Adds a new pkg - ESP32-D0WDR2-V3
KonstantinKondrashov Mar 17, 2022
e61df06
Merge branch 'OEM_ESP' into release/v3
Jason2866 Apr 3, 2022
ee40afa
esp32c2: update esp32c2eco1 stub
esp-wzh May 5, 2022
0716db7
esp32c2: Correct revision reading, deprecate eco0 stub
radimkarnis May 11, 2022
aaaac1a
Update version to v3.3.1
radimkarnis May 11, 2022
4841659
Update version to v3.3.2-dev
radimkarnis May 11, 2022
b89ec2a
Merge branch 'espressif:release/v3' into release/v3
Jason2866 May 15, 2022
e580e00
Merge branch 'Tasmota/v3' into release/v3
Jason2866 May 15, 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
20 changes: 0 additions & 20 deletions .github/workflows/issue_comment.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/new_issues.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/new_prs.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/release_esptool_pypi.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ local.mk
report.xml

docs/_build/
.DS_Store
esp_rfc2217_server.spec
espefuse.spec
espsecure.spec
esptool.spec
1 change: 1 addition & 0 deletions espressif/efuse/esp32/mem_definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ class EfuseDefineFields(EfuseFieldsBase):
('CHIP_VER_REV2', "identity", 0, 5, 20, "bool", 6, None, None, "Silicon Revision 2", None),
('CHIP_VERSION', "identity", 0, 3, 12, "uint:2", 3, None, None, "Reserved for future chip versions", None),
('CHIP_PACKAGE', "identity", 0, 3, 9, "uint:3", 3, None, None, "Chip package identifier", None),
('CHIP_PACKAGE_4BIT', "identity", 0, 3, 2, "bool", 3, None, None, "Chip package identifier #4bit", None),
('XPD_SDIO_FORCE', "config", 0, 4, 16, "bool", 5, None, None, "Ignore MTDI pin (GPIO12) for VDD_SDIO on reset", None),
('XPD_SDIO_REG', "config", 0, 4, 14, "bool", 5, None, None, "If XPD_SDIO_FORCE, enable VDD_SDIO reg on reset", None),
('XPD_SDIO_TIEH', "config", 0, 4, 15, "bool", 5, None, None, "If XPD_SDIO_FORCE & XPD_SDIO_REG",
Expand Down
Loading