Skip to content

Amend for espressif32@~5.2.0 #3

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

Open
wants to merge 5 commits into
base: feat-pio-integration
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"[python]": {
"editor.wordBasedSuggestions": true,
"editor.formatOnSave": true,
// "editor.formatOnSave": true,
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you turn it back on? Or remove it if you have a specific issue on auto-formatting.

},
"[jsonc]": {
"editor.formatOnSave": true,
Expand All @@ -19,5 +19,8 @@
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.json-language-features"
},
"files.associations": {
"common.h": "c"
}
}
4 changes: 2 additions & 2 deletions examples/ulp-counter/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
; https://docs.platformio.org/page/projectconf.html

[env]
platform = espressif32
platform = espressif32@~5.2.0
board = esp32dev
framework = arduino
monitor_speed = 115200

lib_deps =
https://github.com/likeablob/ulptool-pio#pio/0.1.0
https://github.com/xtrinch/ulptool-pio
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like a chicken-egg problem 🐣 . Let me fix all the lib_deps references before the next version bump.


extra_scripts =
pre:/$PROJECT_LIBDEPS_DIR/$PIOENV/ulptool-pio/pre_extra_script_ulptool.py
Expand Down
2 changes: 2 additions & 0 deletions examples/ulpcc-adc-s2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.pio
.vscode
2 changes: 2 additions & 0 deletions examples/ulpcc-adc-s2/include/common.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Number of ADC samples to average on each measurement.
#define adc_oversampling_factor 64 // do not change, the program is adapted for 64!
Loading