aethaniel / ExperimentalCore-sam

Experimental new core for Arduino Due and other Atmel SAM boards
GNU Lesser General Public License v2.1
16 stars 10 forks source link

Wrong include - #include "core_watchdog.c" #55

Closed kgoveas closed 7 years ago

kgoveas commented 7 years ago

Hi,

First of all great job with the Arduino core for the Atmel boards :+1:

I got a multiple definition error due to the include in the core_main.cpp being

#include "core_watchdog.c" 

It should be

#include "core_watchdog.h" 

Would recommend shortening the included headers in the core_main.cpp to

#include "Arduino.h"
#if defined(USBCON)
//#include ""
#endif

Best, Kevin

aethaniel commented 7 years ago

Hi Kevin, Sorry, I missed your issue (no mail notifications).

Fixed in commit f1b7fc5

Thanks!

kgoveas commented 7 years ago

Is there a plan to have this core available in the latest Arduino IDE? or is this project currently archived?