mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 09:49:32 +02:00
10 lines
400 B
C++
10 lines
400 B
C++
#include "FreeRTOS.h"
|
|
|
|
extern "C" {
|
|
BaseType_t xTaskCreatePinnedToCore(TaskFunction_t pxTaskCode, const char* const pcName, const uint32_t ulStackDepth,
|
|
void* const pvParameters, UBaseType_t uxPriority, TaskHandle_t* const pxCreatedTask,
|
|
const BaseType_t xCoreID) {
|
|
return 0;
|
|
}
|
|
void vTaskDelete(TaskHandle_t xTaskToDelete) {}
|
|
}
|