You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
362 B
12 lines
362 B
# Channel3 ESP32 Port - RF Broadcast via I2S DMA
|
|
# This is an ESP-IDF project that ports the ESP8266 Channel3 firmware to ESP32
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# Set default build type to Release if not specified
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
endif()
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(channel3_esp32)
|