You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After opening the firmware Mechaduino_01.ino in Arduino IDE 1.8.2, verification fails with errors from gcc. I tried to google things up, nothing shows up. Maybe some problem between keyboard and chair. I am new to mechaduino so maybe I am missing something obvious. I looks as if types were not recognized, but there is no error about #include not being found. These are the first few messages. Thanks for help!
sketch/analogFastWrite.c: In function 'syncADC':
analogFastWrite.c:17: error: invalid type argument of '->' (have 'uint16_t')
while (ADC->STATUS.bit.SYNCBUSY == 1)
^
sketch/analogFastWrite.c: In function 'syncDAC':
analogFastWrite.c:24: error: 'DAC' undeclared (first use in this function)
while (DAC->STATUS.bit.SYNCBUSY == 1)
^
sketch/analogFastWrite.c:24:10: note: each undeclared identifier is reported only once for each function it appears in
sketch/analogFastWrite.c: At top level:
analogFastWrite.c:29: error: unknown type name 'Tc'
static __inline__ void syncTC_8(Tc* TCx) __attribute__((always_inline, unused));
^
analogFastWrite.c:30: error: unknown type name 'Tc'
static void syncTC_8(Tc* TCx) {
The text was updated successfully, but these errors were encountered:
I would double check that you have the correct board selected in the Arduino IDE (Arduino/Genuino Zero, (Native USB port)). I've seen similar issues when I've forgotten to select the right board.
After opening the firmware Mechaduino_01.ino in Arduino IDE 1.8.2, verification fails with errors from gcc. I tried to google things up, nothing shows up. Maybe some problem between keyboard and chair. I am new to mechaduino so maybe I am missing something obvious. I looks as if types were not recognized, but there is no error about #include not being found. These are the first few messages. Thanks for help!
The text was updated successfully, but these errors were encountered: