at first I was getting many "arduino.h: No such file or directory" errors, which I was able to fix by changing each occurence of arduino.h to Arduino.h.
However, now I'm getting the following errors:
In file included from sketch/sio.h:17:0,
from sketch/sio.cpp:13:
sketch/sio.cpp: In function 'void sio::setup()':
sio.cpp:67:16: error: 'UDORD0' was not declared in this scope
UCSR0C = H(UDORD0) | H(UCPHA0); //(3 << UCSZ00);
^
sketch/avr_util.h:29:21: note: in definition of macro 'H'
#define H(x) (1 << (x))
^
sio.cpp:67:28: error: 'UCPHA0' was not declared in this scope
UCSR0C = H(UDORD0) | H(UCPHA0); //(3 << UCSZ00);
^
sketch/avr_util.h:29:21: note: in definition of macro 'H'
#define H(x) (1 << (x))
^
exit status 1
Hi,
at first I was getting many "arduino.h: No such file or directory" errors, which I was able to fix by changing each occurence of
arduino.h
toArduino.h
.However, now I'm getting the following errors:
I'd very much appreciate some help.