Add initial version of the Build and release action

This commit is contained in:
Lorow
2025-11-10 19:27:05 +01:00
parent 96016909c5
commit c3ea42c4d0
26 changed files with 339 additions and 32 deletions

View File

@@ -7,8 +7,8 @@ set (
Helpers
)
if ("$ENV{IDF_ETARGET}" STREQUAL "esp32s3")
list(APPEND required
if ("$ENV{IDF_TARGET}" STREQUAL "esp32s3")
list(APPEND requires
usb_device_uvc
)
endif()

View File

@@ -1,6 +1,6 @@
#ifdef CONFIG_GENERAL_INCLUDE_UVC_MODE
#include "UVCStream.hpp"
#ifdef CONFIG_GENERAL_INCLUDE_UVC_MODE
#include <cstdio> // for snprintf
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"

View File

@@ -1,7 +1,10 @@
#ifdef CONFIG_GENERAL_INCLUDE_UVC_MODE
#pragma once
#ifndef UVCSTREAM_HPP
#define UVCSTREAM_HPP
#include "sdkconfig.h"
#ifdef CONFIG_GENERAL_INCLUDE_UVC_MODE
#include "esp_timer.h"
#include "esp_mac.h"
#include "esp_camera.h"