Skip to content

Commit

Permalink
Re-enable ATmega128RFA1
Browse files Browse the repository at this point in the history
  • Loading branch information
twasilczyk committed Aug 20, 2021
1 parent e84b2d0 commit ca56d1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/modm/platform/clock/avr/module.lb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ def prepare(module, options):
target = options[":target"].identifier
if target.family in {"tiny"} and target.name in {"861", "88"}:
return False
if target.family in {"mega"} and target.name in {"8", "16", "32", "64", "128"}:
if (target.family in {"mega"} and target.name in {"8", "16", "32", "64", "128"}
and target.type not in {"rfa1"}):
return False

module.depends(":architecture:atomic", ":architecture:clock")
Expand Down
1 change: 0 additions & 1 deletion test/all/ignored.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ at90usb646
at90usb647
at90usb82
atmega1284rfr2
atmega128rfa1
atmega128rfr2
atmega162
atmega165a
Expand Down

0 comments on commit ca56d1f

Please sign in to comment.