Add missing files for the stm32 and teensy platforms

This commit is contained in:
Josh Stewart 2019-01-20 16:13:24 +13:00
parent 3b2967271d
commit 0a4f9666d8
4 changed files with 22 additions and 1 deletions

2
.gitignore vendored
View File

@ -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.*

10
speeduino/board_stm32.ino Normal file
View File

@ -0,0 +1,10 @@
#include "globals.h"
#if defined(CORE_STM32)
void initBoard()
{
}
#endif

View File

@ -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

View File

@ -0,0 +1,10 @@
#include "globals.h"
#if defined(CORE_TEENSY)
void initBoard()
{
}
#endif