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

github.com/nickshl/DevBoy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickshl <nicolai.shlapunov@gmail.com>2018-06-13 06:08:52 +0300
committernickshl <nicolai.shlapunov@gmail.com>2018-06-13 06:08:52 +0300
commit3779c2cd685f644c36ff6f51c820ff94338376ed (patch)
tree7a0dc4939eeaeb038202e4574cb30fecfaea01d7
parentd9fae0d0618d9551bb881778579751eb492ec3b7 (diff)
Bug fix
-rw-r--r--STM32F415APP/DevCore/Framework/AppTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/STM32F415APP/DevCore/Framework/AppTask.cpp b/STM32F415APP/DevCore/Framework/AppTask.cpp
index 9f9c2a3..b36b7c4 100644
--- a/STM32F415APP/DevCore/Framework/AppTask.cpp
+++ b/STM32F415APP/DevCore/Framework/AppTask.cpp
@@ -117,7 +117,7 @@ Result AppTask::IntLoop()
case CTRL_TASK_QUEUE_MSG:
{
// Non blocking read from the task queue
- result = task_queue.Receive(&task_msg_ptr, 0U);
+ result = task_queue.Receive(task_msg_ptr, 0U);
// If successful
if(result.IsGood())
{