test_app_main.c 311 B

1234567891011121314
  1. /*
  2. * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Unlicense OR CC0-1.0
  5. */
  6. #include "unity.h"
  7. #include "freertos/FreeRTOS.h"
  8. #include "freertos/task.h"
  9. void app_main(void)
  10. {
  11. vTaskPrioritySet(NULL, CONFIG_UNITY_FREERTOS_PRIORITY);
  12. unity_run_menu();
  13. }