option(USE_SYSTEMWIDE_PICOSDK "Use the systemwide Pico SDK instead of relying on the one from a deeply nested Git submodule (OFF by default)" OFF) option(PICO_NO_FLASH "Disable writing the compiled program to flash, and only load it to RAM. Useful for testing, but not much else (OFF by default)." OFF) option(PICO_COPY_TO_RAM "Run all code in RAM, while the program is also stored on flash. On bootup, everything will be copied to RAM (OFF by default)." OFF) option(USE_USBCDC_FOR_STDIO "Export an extra USB-CDC interface for stdio, instead of echoing it to a UART port (and requiring UART loopback for receiving stdio output on a host computer)." OFF) set(FAMILY "rp2040" CACHE STRING "Board/MCU family, decides which drivers to use. Set to RP2040 by default.") set(BOARD "raspberry_pi_pico" CACHE STRING "Board used, determines the pinout. Defaults to the Raspberry Pi Pico.") # use directory name for project id get_filename_component(PROJECT ${CMAKE_CURRENT_SOURCE_DIR} NAME) set(PROJECT ${BOARD}-${PROJECT}) # TOP is absolute path to root directory of TinyUSB git repo set(TOP "./tinyusb") get_filename_component(TOP "${TOP}" REALPATH) # Check for -DFAMILY= if(FAMILY STREQUAL "rp2040") cmake_minimum_required(VERSION 3.12) if (USE_SYSTEMWIDE_PICOSDK) include(pico_sdk_import.cmake) else() set(PICO_SDK_PATH ${TOP}/hw/mcu/raspberrypi/pico-sdk) include(${PICO_SDK_PATH}/pico_sdk_init.cmake) endif() project(${PROJECT}) pico_sdk_init() add_executable(${PROJECT}) # need uart stdio, usb is busy doing other stuff if(USE_USBCDC_FOR_STDIO) # we're going to manually implement this case pico_enable_stdio_uart(${PROJECT} 0) target_compile_definitions(${PROJECT} PUBLIC USE_USBCDC_FOR_STDIO=1 PICO_STDIO_USB=1) else() pico_enable_stdio_uart(${PROJECT} 1) endif() pico_enable_stdio_usb(${PROJECT} 0) # Example source target_sources(${PROJECT} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/main.c ${CMAKE_CURRENT_SOURCE_DIR}/usb_descriptors.c ${CMAKE_CURRENT_SOURCE_DIR}/libco/libco.S ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/DAP/Firmware/Source/DAP.c ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/DAP/Firmware/Source/JTAG_DP.c ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/DAP/Firmware/Source/DAP_vendor.c ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/DAP/Firmware/Source/SWO.c ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/DAP/Firmware/Source/SW_DP.c ${CMAKE_CURRENT_SOURCE_DIR}/bsp/${FAMILY}/cdc_uart.c ${CMAKE_CURRENT_SOURCE_DIR}/bsp/${FAMILY}/spi_serprog.c ${CMAKE_CURRENT_SOURCE_DIR}/cdc_serprog.c ${CMAKE_CURRENT_SOURCE_DIR}/rtconf.c ) # Example include target_include_directories(${PROJECT} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/ ${CMAKE_CURRENT_SOURCE_DIR}/libco/ ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/DAP/Firmware/Include/ ${CMAKE_CURRENT_SOURCE_DIR}/CMSIS_5/CMSIS/Core/Include/ ${CMAKE_CURRENT_SOURCE_DIR}/bsp/${FAMILY}/ ${CMAKE_CURRENT_SOURCE_DIR}/bsp/default/ ) # need to do this AFTER the regular includes, so that our bsp folder can # override the tinyusb board.h header include(${TOP}/hw/bsp/${FAMILY}/family.cmake) # tinyusb hardware-specific stuff # Example defines #target_compile_definitions(${PROJECT} PUBLIC #) target_link_libraries(${PROJECT} pico_stdlib pico_unique_id hardware_spi pico_fix_rp2040_usb_device_enumeration) if(USE_USBCDC_FOR_STDIO) target_sources(${PROJECT} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/bsp/${FAMILY}/cdc_stdio.c ) target_include_directories(${PROJECT} PUBLIC ${PICO_SDK_PATH}/src/rp2_common/pico_stdio_usb/include/ ) # extremely ugly hack to prevent the Pico SDK to declare *its* TinyUSB config target_compile_definitions(${PROJECT} PUBLIC _PICO_STDIO_USB_TUSB_CONFIG_H=1 ) target_link_libraries(${PROJECT} pico_stdio) endif() pico_add_extra_outputs(${PROJECT}) else() message(FATAL_ERROR "Invalid FAMILY '${FAMILY}' specified") endif()