We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 074476e + 1c01fcd commit 232c306Copy full SHA for 232c306
libraries/ESP32/examples/Camera/CameraWebServer/app_httpd.cpp
@@ -281,6 +281,8 @@ static esp_err_t stream_handler(httpd_req_t *req) {
281
int64_t fr_end = esp_timer_get_time();
282
283
int64_t frame_time = fr_end - last_frame;
284
+ last_frame = fr_end;
285
+
286
frame_time /= 1000;
287
#if ARDUHAL_LOG_LEVEL >= ARDUHAL_LOG_LEVEL_INFO
288
uint32_t avg_frame_time = ra_filter_run(&ra_filter, frame_time);
tests/validation/uart/uart.ino
@@ -399,7 +399,8 @@ void auto_baudrate_test(void) {
399
400
if (TEST_UART_NUM == 1) {
401
selected_serial = &Serial1;
402
- uart_internal_loopback(0, RX1);
+ // UART1 pins were swapped because of ESP32-P4
403
+ uart_internal_loopback(0, /*RX1*/ TX1);
404
} else {
405
#ifdef RX2
406
selected_serial = &Serial2;
0 commit comments