Skip to content

Commit

Permalink
Fix typoed feature name (#676)
Browse files Browse the repository at this point in the history
This was causing miscompilation of the HAL by providing an incorrect
PAC crate for a chosen target. Here `atsamd51p` PAC for `same51g`
target.
  • Loading branch information
glaeqen authored Mar 7, 2023
1 parent d8d85b0 commit 53c4f71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions hal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Unreleased Changes

- Fix incorrect PAC provided for `same51g` target
- Fix NVM User Row Mapping for `BOD12` Calibration Parameters
- Fix `ExternalInterrupt` implementations for `eic`
- Fix for incorrect feature gates for pins of `samd21gl` chip
Expand Down
2 changes: 1 addition & 1 deletion hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ samd51j = ["samd51", "atsamd51j", "periph-d51j", "pins-d51j"]
samd51n = ["samd51", "atsamd51n", "periph-d51n", "pins-d51n"]
samd51p = ["samd51", "atsamd51p", "periph-d51p", "pins-d51p"]

same51g = ["same51", "atsamd51p", "periph-e51g", "pins-e51g"]
same51g = ["same51", "atsame51g", "periph-e51g", "pins-e51g"]
same51j = ["same51", "atsame51j", "periph-e51j", "pins-e51j"]
same51n = ["same51", "atsame51n", "periph-e51n", "pins-e51n"]

Expand Down

0 comments on commit 53c4f71

Please sign in to comment.