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 42523a1 commit 6abb7ddCopy full SHA for 6abb7dd
ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
@@ -110,10 +110,10 @@ void common_hal_imagecapture_parallelimagecapture_capture(imagecapture_paralleli
110
self->config.frame1_buffer = buffer;
111
112
cam_init(&self->config);
113
+ cam_start();
114
} else {
115
cam_give(buffer);
116
}
- cam_start();
117
118
while (!cam_ready()) {
119
RUN_BACKGROUND_TASKS;
@@ -126,6 +126,4 @@ void common_hal_imagecapture_parallelimagecapture_capture(imagecapture_paralleli
126
127
uint8_t *unused;
128
cam_take(&unused); // this just "returns" buffer
129
-
130
- cam_stop();
131
0 commit comments