ソースを参照

examples: Mark flash encryption & external flash examples as ESP32 only for now

Angus Gratton 6 年 前
コミット
85c2df060d

+ 1 - 0
examples/security/flash_encryption/CMakeLists.txt

@@ -2,5 +2,6 @@
 # CMakeLists in this exact order for cmake to work correctly
 cmake_minimum_required(VERSION 3.5)
 
+set(SUPPORTED_TARGETS esp32)  # Flash encryption not currently supported for ESP32-S2beta
 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
 project(flash_encryption)

+ 1 - 0
examples/storage/ext_flash_fatfs/CMakeLists.txt

@@ -2,5 +2,6 @@
 # in this exact order for cmake to work correctly
 cmake_minimum_required(VERSION 3.5)
 
+set(SUPPORTED_TARGETS esp32)  # external SPI flash driver not currently supported for ESP32-S2beta
 include($ENV{IDF_PATH}/tools/cmake/project.cmake)
 project(ext_flash_fatfs)