From 6304e0b4beca35f59d3c1a5e85547258ec7561db Mon Sep 17 00:00:00 2001 From: Umberto Baldi Date: Tue, 31 May 2022 16:17:50 +0200 Subject: [PATCH] Added fake EFUSE to atmega8 part. This allows to have a common platform.txt recipe for all the ATMegaXX parts in the Arduino IDE. See: https://github.com/arduino/Arduino/issues/2075#issuecomment-238031689 https://github.com/arduino/Arduino/issues/2075 Co-authored-by: Martino Facchin --- src/avrdude.conf.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/avrdude.conf.in b/src/avrdude.conf.in index 362b61675..5a55eddb5 100644 --- a/src/avrdude.conf.in +++ b/src/avrdude.conf.in @@ -6832,6 +6832,13 @@ part "x x x x x x x x i i i i i i i i"; ; + # Required for Arduino IDE + # see: https://github.com/arduino/Arduino/issues/2075 + # https://github.com/arduino/Arduino/issues/2075#issuecomment-238031689 + memory "efuse" + size = 0; + ; + memory "lock" size = 1; min_write_delay = 2000;