is there a thread taking issues related to the new, integrated IDE?
with v0.91 I keep getting an error when compiling (even blink!) for the digispark:
Build options changed, rebuilding all
In file included from C:\dev\arduino-1.5.7\hardware\digistump\avr\cores\tiny\WConstants.h:1:0,
from C:\dev\arduino-1.5.7\hardware\digistump\avr\cores\tiny\WInterrupts.c:36:
/arduino-1.5.7/hardware/tools/avr/avr/include/math.h:426:15: error: expected identifier or '(' before 'double'
extern double round (double __x) __ATTR_CONST__;
^
C:\dev\arduino-1.5.7\hardware\digistump\avr\cores\tiny\wiring.h:136:22: error: expected ')' before '>=' token
#define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))
after commenting out line 136 in wiring.h, i can compile:
...
#define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
//#define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))
#define radians(deg) ((deg)*DEG_TO_RAD)
...