File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
device/esp_tinyusb/test_apps
host/class/msc/usb_host_msc/test_app/main Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,6 @@ void app_main(void)
6868 printf (" \\_/ \\____/\\____/ \\_/ \n" );
6969
7070 unity_utils_setup_heap_record (80 );
71- unity_utils_set_leak_level (1048 ); // 128 (default) + 820 (wl_mount) + 100 (in case of driver format)
71+ unity_utils_set_leak_level (4000 ); // 128 (default) + 820 (wl_mount) + 100 (in case of driver format)
7272 unity_run_menu ();
7373}
Original file line number Diff line number Diff line change 1+ set (priv_req "" )
2+
3+ if (${IDF_VERSION_MAJOR} LESS 6)
4+ list (APPEND priv_req "usb" )
5+ endif ()
6+
17idf_component_register(SRC_DIRS .
28 INCLUDE_DIRS .
39 PRIV_INCLUDE_DIRS "../../../include_private"
4- PRIV_REQUIRES usb
10+ PRIV_REQUIRES ${priv_req}
511 REQUIRES unity
612 WHOLE_ARCHIVE)
Original file line number Diff line number Diff line change @@ -36,6 +36,6 @@ void app_main(void)
3636 printf (" \\/ \\/ \\/ \\/ \r\n" );
3737
3838 unity_utils_setup_heap_record (80 );
39- unity_utils_set_leak_level (530 );
39+ unity_utils_set_leak_level (4000 );
4040 unity_run_menu ();
4141}
You can’t perform that action at this time.
0 commit comments