diff options
author | Benjamin Gould <ben@bgould.org> | 2013-11-27 00:24:57 -0500 |
---|---|---|
committer | Benjamin Gould <ben@bgould.org> | 2013-11-27 00:24:57 -0500 |
commit | 05792e2b83ea99009d895a4caad0e40b5395aff3 (patch) | |
tree | 57d7a8056d04c957f6b0eaa0cc87a51b807e9c6f /protocol/bluefruit.mk | |
parent | c18c52f551545b46a28902c69730eefbdb75577d (diff) |
Added bluefruit protocol and converter for 70% M
Diffstat (limited to 'protocol/bluefruit.mk')
-rw-r--r-- | protocol/bluefruit.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/protocol/bluefruit.mk b/protocol/bluefruit.mk new file mode 100644 index 0000000000..7e6328f6cb --- /dev/null +++ b/protocol/bluefruit.mk @@ -0,0 +1,27 @@ +BLUEFRUIT_DIR = protocol/bluefruit +PJRC_DIR = protocol/pjrc + +SRC += $(BLUEFRUIT_DIR)/main.c \ + $(BLUEFRUIT_DIR)/bluefruit.c \ + serial_uart.c \ + $(PJRC_DIR)/pjrc.c \ + $(PJRC_DIR)/usb_keyboard.c \ + $(PJRC_DIR)/usb_debug.c \ + $(PJRC_DIR)/usb.c + +# Option modules +ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE) + SRC += $(PJRC_DIR)/usb_mouse.c +endif + +ifdef EXTRAKEY_ENABLE + SRC += $(PJRC_DIR)/usb_extra.c +endif + +# Search Path +VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR) +#VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR)/usb_debug_only +VPATH += $(TOP_DIR)/$(PJRC_DIR) + +OPT_DEFS += -DPROTOCOL_BLUEFRUIT +OPT_DEFS += -DPROTOCOL_PJRC |