Updated to fix compile issues

This commit is contained in:
CarlWachter
2024-01-23 16:23:12 +01:00
parent 0d34d57a8e
commit ae76dba3d2
82 changed files with 138 additions and 87 deletions

View File

@@ -55,16 +55,6 @@ const osThreadAttr_t defaultTask_attributes = {
.priority = (osPriority_t) osPriorityNormal,
};
/* 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),
};
/* Private function prototypes -----------------------------------------------*/
/* USER CODE BEGIN FunctionPrototypes */
@@ -81,7 +71,6 @@ void MX_FREERTOS_Init(void); /* (MISRA C 2004 rule 8.1) */
*/
void MX_FREERTOS_Init(void) {
/* USER CODE BEGIN Init */
uartMutexHandle = osMutexNew(&uartMutex_attributes);
/* USER CODE END Init */