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:
authorSG <who.just.the.doctor@gmail.com>2021-10-12 14:48:34 +0300
committerGitHub <noreply@github.com>2021-10-12 14:48:34 +0300
commitb85a50f9124bcaf4448823ef70af38deb526584f (patch)
treeafdc01c088774d3dac9e58353d517313bde67599 /applications/applications.mk
parent841e18dfec820cc7197957f30af1a613c7021efd (diff)
[FL-1792] RPC service (#698)
* Lib: added nanopb * Hal rfid: fixed confused arguments * Lib: update makefile, include nanopb * Lib: remove nanopb * Lib: add nanopb as submodule * Assets: remove protobuf * Assets: add protobuf message definitions as submodule * WIP: [FL-1792] Add Protobuf RPC * WIP: RPC add ping * Add Ping * Fix Ping, Add (WIP) storage * Update submodule * ble-glue: add ptotobuf to ble * WIP: Add storage list test * revert applications.mk * Add Storage List command * ble-glue: fix fast updating rx charachteristic * ble serial: split long ble packets * Add Storage Read/Write/Mkdir/Delete * Disable tests * Rename Element -> File * Add md5sum, fix test leak * Regenerate Protobuf * Fix review comments * ble-glue: sync f7 target Co-authored-by: Albert Kharisov <albert@flipperdevices.com> Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index b5cf772c..5fb8a511 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -19,6 +19,7 @@ SRV_LOADER = 1
SRV_NOTIFICATION = 1
SRV_POWER = 1
SRV_POWER_OBSERVER = 1
+SRV_RPC = 1
SRV_STORAGE = 1
# Apps
@@ -206,6 +207,10 @@ SRV_GUI = 1
SRV_CLI = 1
endif
+SRV_RPC ?= 0
+ifeq ($(SRV_RPC), 1)
+CFLAGS += -DSRV_RPC
+endif
SRV_LOADER ?= 0
ifeq ($(SRV_LOADER), 1)