From 0fca639a2f640a3d80a05e3a0ddfc9c1b8cd5b97 Mon Sep 17 00:00:00 2001 From: dario Date: Tue, 2 Jan 2024 12:42:20 +0000 Subject: [PATCH] README.md aktualisiert --- README.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/README.md b/README.md index 405f658..51cdb5b 100644 --- a/README.md +++ b/README.md @@ -28,24 +28,6 @@ void StartDefaultTask(void *argument) } ``` -Ebenfalls müssen noch diese Ergänzungen in `Core/Src/freertos.c` vorgenommen werden: -``` -/* Definitions for uartMutex */ -osMutexId_t uartMutexHandle; -osStaticMutexDef_t uartMutex_cb; -const osMutexAttr_t uartMutex_attributes = { - .name = "uartMutex", - .cb_mem = &uartMutex_cb, - .cb_size = sizeof(uartMutex_cb), -}; - - -void MX_FREERTOS_Init(void) { - uartMutexHandle = osMutexNew(&uartMutex_attributes); - //... -} -``` - ## Configuring TACOS In order to use TACOS, you need to provide a configuration file in the path `sta/config.hpp`. The following code is an example for a TACOS-project using default configuration: ```