You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, Im using ESP-EYE and the mingw32 console and I get the error:
$ make flash monitor CXX build/CustomVisionClient/CustomVisionClient.o C:/msys32/home/USERNAME/esp/esp32-custom-vision/components/CustomVisionClient/CustomVisionClient.cpp: In member function 'esp_err_t CustomVisionClient::detect(camera_fb_t*, CustomVisionClient::CustomVisionDetectionResult_t*, float, bool, uint8_t**, size_t*)': C:/msys32/home/USERNAME/esp/esp32-custom-vision/components/CustomVisionClient/CustomVisionClient.cpp:308:9: error: 'struct esp_http_client_config_t' has no member named 'is_async' config.is_async = false; ^ C:/msys32/home/Taylan/esp/esp32-custom-vision/components/CustomVisionClient/CustomVisionClient.cpp:323:14: error: 'ESP_ERR_HTTP_EAGAIN' was not declared in this scope if (err != ESP_ERR_HTTP_EAGAIN) { ^ make[1]: *** [/home/USERNAME/esp/esp-idf/make/component_wrapper.mk:286: CustomVisionClient.o] Error 1 make: *** [C:/msys32/home/USERNAME/esp/esp-idf/make/project.mk:468: component-CustomVisionClient-build] Error 2
I have changed the user name for privacy but everything is exact. The hello world from the examples folder works normally. Thank you in advance and sorry if there is an obvious answer.
The text was updated successfully, but these errors were encountered:
Error "... has no member named 'is_async'" is caused by using outdated version of esp-idf library which doesn't support the mentioned features. You should pull newer version.
Hey, Im using ESP-EYE and the mingw32 console and I get the error:
$ make flash monitor CXX build/CustomVisionClient/CustomVisionClient.o C:/msys32/home/USERNAME/esp/esp32-custom-vision/components/CustomVisionClient/CustomVisionClient.cpp: In member function 'esp_err_t CustomVisionClient::detect(camera_fb_t*, CustomVisionClient::CustomVisionDetectionResult_t*, float, bool, uint8_t**, size_t*)': C:/msys32/home/USERNAME/esp/esp32-custom-vision/components/CustomVisionClient/CustomVisionClient.cpp:308:9: error: 'struct esp_http_client_config_t' has no member named 'is_async' config.is_async = false; ^ C:/msys32/home/Taylan/esp/esp32-custom-vision/components/CustomVisionClient/CustomVisionClient.cpp:323:14: error: 'ESP_ERR_HTTP_EAGAIN' was not declared in this scope if (err != ESP_ERR_HTTP_EAGAIN) { ^ make[1]: *** [/home/USERNAME/esp/esp-idf/make/component_wrapper.mk:286: CustomVisionClient.o] Error 1 make: *** [C:/msys32/home/USERNAME/esp/esp-idf/make/project.mk:468: component-CustomVisionClient-build] Error 2
I have changed the user name for privacy but everything is exact. The hello world from the examples folder works normally. Thank you in advance and sorry if there is an obvious answer.
The text was updated successfully, but these errors were encountered: