watterott / ATmega328PB-Testing

Atmel/Microchip ATmega328PB support for Arduino IDE
https://learn.watterott.com
76 stars 61 forks source link

Missing pins on 328PB #15

Closed jandrewb closed 7 years ago

jandrewb commented 7 years ago

The pins_arduino.h file does not appear to define PB6, PB7, and PC6. These pins didn't exist on the 328P.

awatterott commented 7 years ago

The pins are also available on a 328P, but they are not defined because they have special functions. PB6 - XTAL1 (for crystal) PB7 - XTAL2 (for crystal) PC6 - Reset

jandrewb commented 7 years ago

Right... I guess they are still accessible through the AVR APIs.