You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 3.2.0 it was possible to set
board_build.f_cpu = 16000000L
In 3.3.0 compiling fails with:
Compiling .pio\build\attiny85\FrameworkArduino\wiring_shift.c.o
C:\Users\xxx.platformio\packages\framework-arduino-avr-attiny\cores\tiny\wiring.c: In function 'init':
C:\Users\xxx.platformio\packages\framework-arduino-avr-attiny\cores\tiny\wiring.c:1095:8: error: #error "Frequency requested from internal oscillator that cannot be generated by prescaling"
#error "Frequency requested from internal oscillator that cannot be generated by prescaling"
^~~~~
C:\Users\xxx.platformio\packages\framework-arduino-avr-attiny\cores\tiny\wiring.c:1096:8: error: #error "Custom tuning is not supported in the current version of ATTinyCore"
#error "Custom tuning is not supported in the current version of ATTinyCore"
^~~~~
The code I'm compiling depends on the 16MHz PLL clock.
The text was updated successfully, but these errors were encountered:
Hi @5e3 ! In the latest release the ATTinyCore was updated to the latest v1.5.2, so something may have changed in the internal implementation. Anyway, the error message seems quite descriptive. Does it work in the Arduino IDE?
In 3.2.0 it was possible to set
board_build.f_cpu = 16000000L
In 3.3.0 compiling fails with:
Compiling .pio\build\attiny85\FrameworkArduino\wiring_shift.c.o
C:\Users\xxx.platformio\packages\framework-arduino-avr-attiny\cores\tiny\wiring.c: In function 'init':
C:\Users\xxx.platformio\packages\framework-arduino-avr-attiny\cores\tiny\wiring.c:1095:8: error: #error "Frequency requested from internal oscillator that cannot be generated by prescaling"
#error "Frequency requested from internal oscillator that cannot be generated by prescaling"
^~~~~
C:\Users\xxx.platformio\packages\framework-arduino-avr-attiny\cores\tiny\wiring.c:1096:8: error: #error "Custom tuning is not supported in the current version of ATTinyCore"
#error "Custom tuning is not supported in the current version of ATTinyCore"
^~~~~
The code I'm compiling depends on the 16MHz PLL clock.
The text was updated successfully, but these errors were encountered: