Add missing files for the stm32 and teensy platforms
This commit is contained in:
parent
3b2967271d
commit
0a4f9666d8
|
@ -22,4 +22,4 @@ reference/hardware/v0.4/gerbers/Archive.zip
|
|||
.vscode/c_cpp_properties.json
|
||||
.vscode/launch.json
|
||||
.vscode/.browse.c_cpp.db*
|
||||
speeduino/src/boards/samd21.h
|
||||
*samd21.*
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#include "globals.h"
|
||||
|
||||
#if defined(CORE_STM32)
|
||||
|
||||
void initBoard()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#endif
|
|
@ -6,6 +6,7 @@
|
|||
***********************************************************************************************************
|
||||
* General
|
||||
*/
|
||||
void initBoard();
|
||||
#define PORT_TYPE uint8_t //Size of the port variables
|
||||
#define BOARD_DIGITAL_GPIO_PINS 34
|
||||
#define BOARD_NR_GPIO_PINS 34
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#include "globals.h"
|
||||
|
||||
#if defined(CORE_TEENSY)
|
||||
|
||||
void initBoard()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue