1 /* 2 * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdio.h> 8 #include <string.h> 9 #include "unity.h" 10 app_main(void)11void app_main(void) 12 { 13 UNITY_BEGIN(); 14 unity_run_menu(); 15 UNITY_END(); 16 } 17