Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgornekich <n.gorbadey@gmail.com>2021-12-15 20:39:06 +0300
committerGitHub <noreply@github.com>2021-12-15 20:39:06 +0300
commitf0d4584b4035a65c5fad7b45e526081235fad50b (patch)
tree1e8ade6e5914dcafb0a65e8603246a1eb0f62c5f /applications/applications.mk
parent63642617eeb74cfce8b0531921af641b59a36498 (diff)
[FL-2119] BT HID App (#888)
* view_dispatcher: add default back processing for Long events * assets: add ble connected and disconnected assets * bt keyboard: introduce new application * bt keyboard: add logic to keyboard mode * bt: remove debug ble hid application * bt hid: introduce media controller * gui canvas: rename CanvasFontDirection -> CanvasDirection * gui canvas: add arrow element * assets: update finilized assets * bt hid: finalise keynote GUI * bt hid: finalise media player GUI * bt: add media key buttons support * bt: add exit confirm view * bt: change Clicker -> Remote * bt: support f6 target * bt: hopefully final bt hid design * bt hid: add blue led notification when device is connected * bt: leave only bt clicker for now * bt: add display notification on pin code show event
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index e067faef..35069882 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -47,7 +47,7 @@ APP_SD_TEST = 1
APP_VIBRO_TEST = 1
APP_USB_TEST = 1
APP_DISPLAY_TEST = 1
-APP_BLE_KEYBOARD = 1
+APP_BLE_HID = 1
APP_USB_MOUSE = 1
APP_BAD_USB = 1
APP_UART_ECHO = 1
@@ -167,9 +167,9 @@ CFLAGS += -DAPP_BAD_USB
SRV_GUI = 1
endif
-APP_BLE_KEYBOARD ?=0
-ifeq ($(APP_BLE_KEYBOARD), 1)
-CFLAGS += -DAPP_BLE_KEYBOARD
+APP_BLE_HID ?=0
+ifeq ($(APP_BLE_HID), 1)
+CFLAGS += -DAPP_BLE_HID
SRV_GUI = 1
endif