mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
21 lines
508 B
C
21 lines
508 B
C
#include <stdio.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "unity.h"
|
|
#include "unity_config.h"
|
|
|
|
void unityTask(void *pvParameters)
|
|
{
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
unity_run_menu();
|
|
while(1);
|
|
}
|
|
|
|
void app_main()
|
|
{
|
|
// Note: if unpinning this task, change the way run times are calculated in
|
|
// unity_platform
|
|
xTaskCreatePinnedToCore(unityTask, "unityTask", 4096, NULL,
|
|
UNITY_FREERTOS_PRIORITY, NULL, UNITY_FREERTOS_CPU);
|
|
}
|