51dcae8c6c
Le firmware n'utilise plus ESP-ADF (audio via esp_codec_dev + esp-audio-player/esp_audio_codec). Supprime le bloc ADF_PATH du CMake racine et main, le commentaire idf_component.yml, et l'en-tete ADF de main/CMakeLists. Retire modes/radios.h (orphelin, URLs dans radio.c). Corrige le commentaire 'STUB' de games.c (Coloriage est implemente: canvas + flood-fill). Reecrit le README (statut compile vert, archi box+Merlin, modes a jour).
11 lines
426 B
CMake
11 lines
426 B
CMake
# Lisael Box — top-level project CMake for ESP-IDF 5.4/5.5
|
|
# Target: ESP32-S3-BOX-3
|
|
#
|
|
# Audio is handled WITHOUT ESP-ADF: the BSP esp-box-3 owns the I2S/ES8311 codec
|
|
# (esp_codec_dev) and decoding goes through chmorgan/esp-audio-player +
|
|
# espressif/esp_audio_codec (managed components, see main/idf_component.yml).
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(lisael_box)
|