Skip to content

Commit

Permalink
Moved RealMouse to board, add extension.json for VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
kbumsik committed Apr 9, 2018
1 parent 72cb20f commit 63316c6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
"dan-c-underwood.arm",
"ms-vscode.cpptools",
"marus25.cortex-debug"
]
}
2 changes: 2 additions & 0 deletions firmware/source.mk
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ C_SOURCES += $(wildcard ./*.cc)
# board sources
BOARD_SOURCES := $(addsuffix /*.c,$(BOARD_SRC_DIR))
BOARD_SOURCES := $(wildcard $(BOARD_SOURCES))
BOARD_SOURCES_CXX := $(addsuffix /*.cc,$(BOARD_SRC_DIR))
BOARD_SOURCES += $(wildcard $(BOARD_SOURCES_CXX))

C_SOURCES += $(BOARD_SOURCES)

Expand Down
File renamed without changes.

0 comments on commit 63316c6

Please sign in to comment.