Fix portL mappings for atmega2560 (#1222)

* machine/atmega2560: fix portL mapping for atmega2560
Этот коммит содержится в:
Branden Timm 2020-07-08 12:02:10 -05:00 коммит произвёл GitHub
родитель 49df129ccd
коммит 33024d4aa2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -94,7 +94,7 @@ const (
PL4 = portL + 4 PL4 = portL + 4
PL5 = portL + 5 PL5 = portL + 5
PL6 = portL + 6 PL6 = portL + 6
PL7 = portE + 7 PL7 = portL + 7
) )
// getPortMask returns the PORTx register and mask for the pin. // getPortMask returns the PORTx register and mask for the pin.