Browse Source

Fix portL mappings for atmega2560 (#1222)

* machine/atmega2560: fix portL mapping for atmega2560
pull/1223/head
Branden Timm 4 years ago
committed by GitHub
parent
commit
33024d4aa2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/machine/machine_atmega2560.go

2
src/machine/machine_atmega2560.go

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

Loading…
Cancel
Save