Skip to content

Commit 9648e1a

Browse files
authored
Corrected typo in MyHwAVR.cpp (#1426)
1 parent e91b6fd commit 9648e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hal/architecture/AVR/MyHwAVR.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ uint16_t hwCPUFrequency(void)
347347

348348
int8_t hwCPUTemperature(void)
349349
{
350-
#if defined(__AVR_ATmega168A__) || defined(__AVR_ATmega168P__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega328P__) || defined(__AVR_ATmega328BP__) || defined(__AVR_ATmega32U4__)
350+
#if defined(__AVR_ATmega168A__) || defined(__AVR_ATmega168P__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega328P__) || defined(__AVR_ATmega328PB__) || defined(__AVR_ATmega32U4__)
351351
// Set the internal reference and mux.
352352
ADMUX = (_BV(REFS1) | _BV(REFS0) | _BV(MUX3));
353353
ADCSRA |= _BV(ADEN); // enable the ADC

0 commit comments

Comments
 (0)