We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b68415 commit b659d4cCopy full SHA for b659d4c
test/CMakeLists.txt
@@ -1,4 +1,5 @@
1
idf_component_register(SRC_DIRS .
2
PRIV_INCLUDE_DIRS .
3
- PRIV_REQUIRES test_utils esp32-camera nvs_flash
+ PRIV_REQUIRES test_utils esp32-camera nvs_flash mbedtls esp_timer
4
EMBED_TXTFILES pictures/testimg.jpeg pictures/test_outside.jpeg pictures/test_inside.jpeg)
5
+target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
test/test_camera.c
@@ -7,6 +7,7 @@
7
#include <mbedtls/base64.h>
8
#include "esp_log.h"
9
#include "driver/i2c.h"
10
+#include "esp_timer.h"
11
12
#include "esp_camera.h"
13
@@ -18,6 +19,8 @@
18
19
#define BOARD_CAMERA_MODEL_ESP32_S3_EYE 1
20
#endif
21
22
+#define portTICK_RATE_MS portTICK_PERIOD_MS
23
+
24
// WROVER-KIT PIN Map
25
#if BOARD_WROVER_KIT
26
0 commit comments