211580bf4f
Run some unit test cases based (poorly) around sodium's test infrastructure. Increase in unity test task stack is due to signature tests, load a lot of data onto the stack.
20 lines
508 B
C
20 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", 8192, NULL,
|
|
UNITY_FREERTOS_PRIORITY, NULL, UNITY_FREERTOS_CPU);
|
|
}
|