C++ conversion (#80)

Converted project to C++
This commit is contained in:
Ken Van Hoeylandt
2024-11-22 20:26:08 +01:00
committed by GitHub
parent 6d80144e12
commit 85e26636a3
488 changed files with 6017 additions and 39466 deletions
+51
View File
@@ -0,0 +1,51 @@
#include "Tactility.h"
#include "Thread.h"
#include "FreeRTOS.h"
#include "task.h"
#define TAG "freertos"
void app_main();
static void main_task(TT_UNUSED void* parameter) {
TT_LOG_I(TAG, "starting app_main()");
app_main();
TT_LOG_I(TAG, "returned from app_main()");
vTaskDelete(nullptr);
}
int main() {
BaseType_t task_result = xTaskCreate(
main_task,
"main",
8192,
nullptr,
tt::ThreadPriorityNormal,
nullptr
);
tt_assert(task_result == pdTRUE);
// Blocks forever
vTaskStartScheduler();
}
/**
* Assert implementation as defined in the FreeRTOSConfig.h
* It allows you to set breakpoints and debug asserts.
*/
void vAssertCalled(unsigned long line, const char* const file) {
static portBASE_TYPE xPrinted = pdFALSE;
volatile uint32_t set_to_nonzero_in_debugger_to_continue = 0;
TT_LOG_E(TAG, "assert triggered at %s:%d", file, line);
taskENTER_CRITICAL();
{
// Step out by attaching a debugger and setting set_to_nonzero_in_debugger_to_continue
while (set_to_nonzero_in_debugger_to_continue == 0) {
// NO-OP
}
}
taskEXIT_CRITICAL();
}