Open GoogleCodeExporter opened 8 years ago
[deleted comment]
Will it compile with Arduino 1.0.x?
I do not test 0022 any more....
Original comment by olikr...@gmail.com
on 10 May 2013 at 1:16
Original comment by olikr...@gmail.com
on 31 Oct 2013 at 4:09
Oliver,
It could be that a newer version of avr-libC is being used.
Here is a "known" issue from openGLCD:
==============================
0019,0020,0021, 0022, 0023 pre 1.x IDEs won't work with newer versions of avr-libC
new <util/delay.h> uses math.h and Arduino core code breaks math.h
The solution to this is to either:
comment out #include <avr/delay.h> in wiring_private.h (none of the core code
uses/needs it)
Or if wanting to make util/delay functions available: must add #include
<math.h> to top of wiring.h since wiring.h #defines the math functions and
breaks math.h Because of this, math.h must be included before defines stomp on
math functions
==============================
It is a core code issue. They never should have redefined all the math
functions.
And because they did, they periodically "break".
If this is the issue, there is no work around that can be done in the library.
The user will have to modify the core code header files.
--- bill
Original comment by bperry...@gmail.com
on 29 Dec 2013 at 9:11
Thanks for looking at the issues here, Bill
Good background information also.
I personally think that i will not do any further action here...
Original comment by olikr...@gmail.com
on 29 Dec 2013 at 9:52
Original issue reported on code.google.com by
caei...@gmail.com
on 6 May 2013 at 11:31