diff --git a/src/Targets/Microchip/AVR/AVR8/Avr8.cpp b/src/Targets/Microchip/AVR/AVR8/Avr8.cpp index 4af4a5bc..005a36f8 100644 --- a/src/Targets/Microchip/AVR/AVR8/Avr8.cpp +++ b/src/Targets/Microchip/AVR/AVR8/Avr8.cpp @@ -263,7 +263,12 @@ void Avr8::loadTargetVariants() { targetPin.number = tdPin.position; // TODO: REMOVE THIS: - if (tdPin.pad.find("vcc") == 0 || tdPin.pad.find("avcc") == 0 || tdPin.pad.find("aref") == 0) { + if (tdPin.pad.find("vcc") == 0 + || tdPin.pad.find("avcc") == 0 + || tdPin.pad.find("aref") == 0 + || tdPin.pad.find("avdd") == 0 + || tdPin.pad.find("vdd") == 0 + ) { targetPin.type = TargetPinType::VCC; } else if (tdPin.pad.find("gnd") == 0) {