Files
lbuque d8c9a4e919 all: Updated MicroPython version to 1.25.0.
1. support esp32-p4.
2. still using i2c-driver.

Signed-off-by: lbuque <lbuque@163.com>
2025-06-12 10:34:28 +08:00

16 lines
464 B
CMake

# SPDX-FileCopyrightText: 2025 M5Stack Technology CO LTD
#
# SPDX-License-Identifier: MIT
# Set location of base MicroPython directory.
if(NOT MICROPY_DIR)
get_filename_component(MICROPY_DIR ${PROJECT_DIR}/../micropython/ ABSOLUTE)
endif()
# Set location of the ESP32 port directory.
if(NOT MICROPY_PORT_DIR)
get_filename_component(MICROPY_PORT_DIR ${CMAKE_CURRENT_LIST_DIR}/.. ABSOLUTE)
endif()
include(${CMAKE_CURRENT_LIST_DIR}/../esp32_common.cmake)