Hej!
I'm trying with the new IDE 2.0.0 tu upload a simple sketch to an Attiny85, but I get the error message :
Sketch uses 426 bytes (5%) of program storage space. Maximum is 8192 bytes.
Global variables use 9 bytes (1%) of dynamic memory, leaving 503 bytes for local variables. Maximum is 512 bytes.
A programmer is required to upload.
the sketch is:
void setup() {
// put your setup code here, to run once:
int a=10;
}
void loop() {
// put your main code here, to run repeatedly:
delay(1000);
}
when I use the same settings @ the older IDE 1.8.20 hourly build 2022-04-25 09:33, the programming works.
==> I added the additional board to the URL Manager:
https://raw.githubusercontent.com/damellis/attiny/ide-1.6.x-boards-manager/package_damellis_attiny_index.json
Burning the bootload with IDE 2.0 worked
Is there a setting I'm missing?