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 21, 2021
1 parent 8e7a76d commit ea6fb69
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ git clone --recurse-submodules --jobs 8 https://github.com/modm-io/modm.git

## Microcontrollers

modm can create a HAL for <!--allcount-->3166<!--/allcount--> devices of these vendors:
modm can create a HAL for <!--allcount-->3172<!--/allcount--> devices of these vendors:

- STMicroelectronics STM32: <!--stmcount-->2621<!--/stmcount--> devices.
- Microchip SAM: <!--samcount-->163<!--/samcount--> devices.
- Microchip AVR: <!--avrcount-->382<!--/avrcount--> devices.
- Microchip AVR: <!--avrcount-->388<!--/avrcount--> devices.

Here is a table with all device families and the peripheral drivers they support:

Expand Down Expand Up @@ -312,7 +312,7 @@ Please [discover modm's peripheral drivers for your specific device][discover].
<td align="center">○</td>
<td align="center">○</td>
<td align="center">✗</td>
<td align="center"></td>
<td align="center"></td>
<td align="center">✗</td>
</tr><tr>
<td align="left">Random Generator</td>
Expand Down Expand Up @@ -366,7 +366,7 @@ Please [discover modm's peripheral drivers for your specific device][discover].
<td align="center">✅</td>
<td align="center">✅</td>
<td align="center">✗</td>
<td align="center"></td>
<td align="center"></td>
<td align="center">✗</td>
</tr><tr>
<td align="left">Timer</td>
Expand Down
2 changes: 1 addition & 1 deletion ext/modm-devices
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 ea6fb69

Please sign in to comment.