speeduino/speeduino/board_template.cpp

42 lines
880 B
C++

#include "globals.h"
#if defined(CORE_TEMPLATE)
void initBoard()
{
/*
***********************************************************************************************************
* General
*/
/*
***********************************************************************************************************
* Timers
*/
/*
***********************************************************************************************************
* Auxiliaries
*/
/*
***********************************************************************************************************
* Idle
*/
/*
***********************************************************************************************************
* Schedules
*/
}
uint16_t freeRam()
{
}
void doSystemReset() { return; }
void jumpToBootloader() { return; }
#endif