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

Fix PCA10145/nRF54H20-PDK voltage selection pins #69

Merged
merged 1 commit into from
Mar 6, 2024
Merged
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
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ EXPERIMENTAL RELEASE
### Changed

- Fix maximum voltage for nRF54L15-DKs
- Fix voltage selections on nRF54H20-PDK

## 0.1.8 - UNRELEASED

Expand Down
9 changes: 6 additions & 3 deletions src/common/boards/nrf_PCA10145_54H20.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"title": "GPIO port 1 Voltage",
"label": "Voltage",
"enable": {
"pin": 6
"pin": 6,
"invert": true
},
"alternatives": ["1V2", "1V8"]
},
Expand All @@ -43,7 +44,8 @@
"title": "GPIO port 2 Voltage",
"label": "Voltage",
"enable": {
"pin": 7
"pin": 7,
"invert": true
},
"alternatives": ["1V2", "1V8"]
},
Expand All @@ -53,7 +55,8 @@
"title": "GPIO port 7 Voltage",
"label": "Voltage",
"enable": {
"pin": 8
"pin": 8,
"invert": true
},
"alternatives": ["1V2", "1V8"]
},
Expand Down
Loading