From b607e6e5f5cc15e3390e6a89af1b5b4749f62616 Mon Sep 17 00:00:00 2001 From: aanper Date: Wed, 21 Oct 2020 15:19:43 +0300 Subject: [PATCH] add todo about dispatcher lock implementation --- applications/nfc/dispatcher.c | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/nfc/dispatcher.c b/applications/nfc/dispatcher.c index 5aefc5f9..0d106a6b 100644 --- a/applications/nfc/dispatcher.c +++ b/applications/nfc/dispatcher.c @@ -36,6 +36,7 @@ void dispatcher_send(Dispatcher* dispatcher, Message* message) { assert(osMessageQueuePut(dispatcher->mqueue, message, 0, osWaitForever) == osOK); } +// TODO: bad side-effect void dispatcher_recieve(Dispatcher* dispatcher, Message* message) { assert(dispatcher); assert(message);