itsanjan / arduino

Automatically exported from code.google.com/p/arduino
Other
0 stars 0 forks source link

ATmega88 no longer supported in 1.0RC1 #681

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

1. Compile any sketch using a board with an ATmega88 (P/PA as well)
2.
3.

What is the expected output? What do you see instead?

204:26: error: pins_arduino_h: No such file or directory

What version of the Arduino software are you using? On what operating system?  
Which Arduino board are you using?

Win XP, custom board.  Set-up works fine on v0022

Please provide any additional information below.

Arduino 0022 implicitly supported the ATmega88 series by assuming that if it's 
not an '8A or Mega, it must be a 168/328.  This assumption did work, even if it 
was not intended.

The new platforms systems requires explicit support for the ATmega88 family.

Original issue reported on code.google.com by awebu...@hotmail.com on 20 Oct 2011 at 12:14

GoogleCodeExporter commented 8 years ago
You're adding a new boards.txt file or entry, right?  In Arduino 1.0, you also 
need to include:

<BOARD>.build.variant=standard (or other value)

to tell the IDE where to find the pins_arduino.h file for your board.  I think 
it should work then.  If you run into other problems, let us know.

Original comment by dmel...@gmail.com on 20 Oct 2011 at 12:25

GoogleCodeExporter commented 8 years ago
Yup!  ;)  That last line was missing...

All is good.

Original comment by awebu...@hotmail.com on 20 Oct 2011 at 1:50