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:
authorあく <alleteam@gmail.com>2021-08-07 19:54:42 +0300
committerGitHub <noreply@github.com>2021-08-07 19:54:42 +0300
commit7907cb232bda5af7c30c79c67ab353b2cefe57c8 (patch)
tree767269615021122634a4c06d81a1e6079f3fbe5d /applications/dolphin
parenteb83395cc36bf3250e39f9544026b1fa76630bd1 (diff)
Applications: unified entry point naming scheme, drop dead code, cleanup. (#628)
Diffstat (limited to 'applications/dolphin')
-rw-r--r--applications/dolphin/dolphin.c2
-rw-r--r--applications/dolphin/passport/passport.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/dolphin/dolphin.c b/applications/dolphin/dolphin.c
index 3ccbab82..2dcd13ef 100644
--- a/applications/dolphin/dolphin.c
+++ b/applications/dolphin/dolphin.c
@@ -393,7 +393,7 @@ void dolphin_deed(Dolphin* dolphin, DolphinDeed deed) {
furi_check(osMessageQueuePut(dolphin->event_queue, &event, 0, osWaitForever) == osOK);
}
-int32_t dolphin_task() {
+int32_t dolphin_srv() {
Dolphin* dolphin = dolphin_alloc();
if(dolphin_state_load(dolphin->state)) {
diff --git a/applications/dolphin/passport/passport.c b/applications/dolphin/passport/passport.c
index 53b97ba0..9b1cae04 100644
--- a/applications/dolphin/passport/passport.c
+++ b/applications/dolphin/passport/passport.c
@@ -97,7 +97,7 @@ static void render_callback(Canvas* canvas, void* ctx) {
release_mutex((ValueMutex*)ctx, state);
}
-int32_t passport(void* p) {
+int32_t passport_app(void* p) {
DolphinState* dolphin_state = dolphin_state_alloc();
ValueMutex state_mutex;
dolphin_state_load(dolphin_state);