Skip to content
Snippets Groups Projects
Commit 27552157 authored by Thibaut VIARD's avatar Thibaut VIARD
Browse files

Doing cosmetics

parent c8fcad9f
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,8 @@ extern "C"{
void yield( void ) ;
/* sketch */
extern void setup( void ) ;
extern void loop( void ) ;
void setup( void ) ;
void loop( void ) ;
#define NOT_AN_INTERRUPT -1
......
......@@ -25,21 +25,21 @@
*/
int main( void )
{
init();
init();
delay(1);
delay(1);
//#if defined(USBCON)
// USBDevice.attach();
//#endif
#if defined(USBCON)
// USBDevice.attach();
#endif
setup();
setup();
for (;;)
{
loop();
if (serialEventRun) serialEventRun();
}
for (;;)
{
loop();
if (serialEventRun) serialEventRun();
}
return 0;
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment