Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
ab403eb
move penv setup to platform.py
Jason2866 Sep 21, 2025
9ceaf53
simplify
Jason2866 Sep 21, 2025
c30a5f5
call installer with penv Python
Jason2866 Sep 21, 2025
753b6b1
revert
Jason2866 Sep 21, 2025
875859a
fix scons error
Jason2866 Sep 21, 2025
80beb95
try again to call tl-install from penv Python
Jason2866 Sep 21, 2025
1846427
install esptool later
Jason2866 Sep 21, 2025
64890e7
esptool install later
Jason2866 Sep 21, 2025
202e2cf
remove warning esptool noise
Jason2866 Sep 21, 2025
7c18afd
sort imports
Jason2866 Sep 21, 2025
5cbc402
Replace remaining direct setup_python_environment call with platform.…
Jason2866 Sep 21, 2025
46e0f5a
wrong function name
Jason2866 Sep 21, 2025
5b5d254
fix: parameter name shadows function
Jason2866 Sep 22, 2025
db0fa6d
Type hints: use Optional[str] for nullable arguments
Jason2866 Sep 22, 2025
1821882
Remove unused parameter penv_python
Jason2866 Sep 22, 2025
5facafb
Avoid leaving sockets open
Jason2866 Sep 22, 2025
526076d
make github_actions bool
Jason2866 Sep 22, 2025
78c85f4
remove duplcate python check
Jason2866 Sep 22, 2025
89c4c13
fix endless recursion
Jason2866 Sep 22, 2025
9eacb21
show 1000 chars on failure with idf_tools.py
Jason2866 Sep 22, 2025
f8c937e
add "GIT_SSL_CAINFO"
Jason2866 Sep 22, 2025
b8a1c36
use importlib for penv_setup.py
Jason2866 Sep 22, 2025
1ef6508
remove duplicate comment
Jason2866 Sep 22, 2025
300330c
update comments
Jason2866 Sep 22, 2025
70cde20
no assert
Jason2866 Sep 22, 2025
56f3101
no env.subst needed
Jason2866 Sep 22, 2025
df26f48
Eliminate fallback for Python environment setup (#299)
Jason2866 Sep 22, 2025
99c086e
Increase subprocess timeout for installations
Jason2866 Sep 22, 2025
b4c7735
Modify esptool path check to return None
Jason2866 Sep 22, 2025
dc4a7f6
Improve error handling for missing Python executable
Jason2866 Sep 22, 2025
c08eb7d
Add urllib3 dependency with version constraint
Jason2866 Sep 23, 2025
9152569
Modify _setup_certifi_env to use python_exe argument
Jason2866 Sep 23, 2025
3ea5eb0
remove fallback for certifi environment setup in penv_setup.py
Jason2866 Sep 23, 2025
3886ceb
Check for Python executable file in penv_setup
Jason2866 Sep 23, 2025
00b5d0c
Change existence check to use isfile "python" for penv_dir
Jason2866 Sep 23, 2025
4d54627
Refactor _setup_certifi_env function parameters
Jason2866 Sep 23, 2025
cf44301
Change warnings to errors in package installation
Jason2866 Sep 27, 2025
19aae9f
Remove '--ng' option from esp_idf_size command
Jason2866 Oct 1, 2025
7f5c693
Update esp-idf-size package version to 2.0.0
Jason2866 Oct 1, 2025
0691899
Update debugger package v16.3
Jason2866 Oct 3, 2025
8e96845
Add pydantic dependency version specification
Jason2866 Oct 7, 2025
3ee9ce3
Remove unused import in espidf.py
Jason2866 Oct 7, 2025
0307324
Update ESP-IDF version v5.5.1.250929
Jason2866 Oct 8, 2025
ff37a38
Update toolchain package versions v14.2.0 20250730
Jason2866 Oct 8, 2025
33f9654
HybridCompile: Use Psram and flash settings from boards.json
Jason2866 Oct 8, 2025
315b5b1
HybridCompile: PSRAM and speed settings are taken from boards.json
Jason2866 Oct 8, 2025
79eb38d
Remove unnecessary conversion for esptool_flash_freq
Jason2866 Oct 8, 2025
0e019ff
Update platform version 55.03.32 / Arduino 3.3.2
Jason2866 Oct 8, 2025
d9dbb00
Update espressif Arduino version to 3.3.2
Jason2866 Oct 8, 2025
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Prerequisites:
The Wiki is AI generated and insane detailed and accurate.

### Stable Arduino
currently espressif Arduino 3.3.1 and IDF 5.5.1
currently espressif Arduino 3.3.2 and IDF 5.5.1.250929

```ini
[env:stable]
Expand Down
6 changes: 3 additions & 3 deletions builder/frameworks/arduino.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
http://arduino.cc/en/Reference/HomePage
"""

import hashlib
import os
import sys
import shutil
import hashlib
import sys
import threading
from contextlib import suppress
from os.path import join, exists, isabs, splitdrive, commonpath, relpath
Expand Down Expand Up @@ -886,7 +886,7 @@ def get_frameworks_in_current_env():
if flag_custom_sdkconfig and not flag_any_custom_sdkconfig:
call_compile_libs()

# Main logic for Arduino Framework
# Arduino framework configuration and build logic
pioframework = env.subst("$PIOFRAMEWORK")
arduino_lib_compile_flag = env.subst("$ARDUINO_LIB_COMPILE_FLAG")

Expand Down
4 changes: 2 additions & 2 deletions builder/frameworks/component_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import shutil
import re
import yaml
from yaml import SafeLoader
from pathlib import Path
from typing import Set, Optional, Dict, Any, List, Tuple, Pattern
from yaml import SafeLoader


class ComponentManagerConfig:
Expand Down Expand Up @@ -252,7 +252,7 @@ def _get_or_create_component_yml(self) -> str:
Returns:
Absolute path to the component YAML file
"""
# Try Arduino framework first
# Check Arduino framework directory first
afd = self.config.arduino_framework_dir
framework_yml = str(Path(afd) / "idf_component.yml") if afd else ""
if framework_yml and os.path.exists(framework_yml):
Expand Down
Loading