| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | cmake_minimum_required(VERSION 3.13)
 | 
					
						
							| 
									
										
										
										
											2023-07-18 09:02:59 -05:00
										 |  |  | include_guard(GLOBAL)
 | 
					
						
							| 
									
										
										
										
											2021-03-18 19:53:39 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | if (NOT BOARD)
 | 
					
						
							|  |  |  | 	message("BOARD not specified, defaulting to pico_sdk")
 | 
					
						
							|  |  |  | 	set(BOARD pico_sdk)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-05-31 10:06:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-13 19:12:26 +07:00
										 |  |  | include(${CMAKE_CURRENT_LIST_DIR}/boards/${BOARD}/board.cmake)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if (TOOLCHAIN STREQUAL "clang")
 | 
					
						
							|  |  |  | #	set(PICO_COMPILER "pico_arm_clang")
 | 
					
						
							|  |  |  | #else()
 | 
					
						
							|  |  |  | #	set(PICO_COMPILER "pico_arm_gcc")
 | 
					
						
							|  |  |  | #endif()
 | 
					
						
							| 
									
										
										
										
											2024-04-19 14:05:31 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | # add the SDK in case we are standalone tinyusb example (noop if already present)
 | 
					
						
							|  |  |  | include(${CMAKE_CURRENT_LIST_DIR}/pico_sdk_import.cmake)
 | 
					
						
							| 
									
										
										
										
											2021-05-31 10:06:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | # include basic family CMake functionality
 | 
					
						
							|  |  |  | set(FAMILY_MCUS RP2040)
 | 
					
						
							| 
									
										
										
										
											2021-03-02 22:57:33 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-13 19:12:26 +07:00
										 |  |  | if (PICO_PLATFORM STREQUAL "rp2040")
 | 
					
						
							|  |  |  | 	set(JLINK_DEVICE rp2040_m0_0)
 | 
					
						
							|  |  |  | 	set(OPENOCD_TARGET rp2040)
 | 
					
						
							|  |  |  | elseif (PICO_PLATFORM STREQUAL "rp2350-arm-s" OR PICO_PLATFORM STREQUAL "rp2350")
 | 
					
						
							|  |  |  | 	set(JLINK_DEVICE rp2350_m33_0)
 | 
					
						
							|  |  |  | 	set(OPENOCD_TARGET rp2350)
 | 
					
						
							|  |  |  | elseif (PICO_PLATFORM STREQUAL "rp2350-riscv")
 | 
					
						
							|  |  |  | 	set(JLINK_DEVICE rp2350_riscv_0)
 | 
					
						
							|  |  |  | 	set(OPENOCD_TARGET rp2350-riscv)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-03-02 22:57:33 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-20 15:47:29 +07:00
										 |  |  | if (NOT OPENOCD_OPTION)
 | 
					
						
							|  |  |  | 	set(OPENOCD_OPTION "-f interface/cmsis-dap.cfg -f target/${OPENOCD_TARGET}.cfg -c \"adapter speed 5000\"")
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-01-24 00:12:20 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | if (NOT PICO_TINYUSB_PATH)
 | 
					
						
							|  |  |  | 	set(PICO_TINYUSB_PATH ${TOP})
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-05-31 10:58:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | if (NOT TINYUSB_OPT_OS)
 | 
					
						
							|  |  |  | 	set(TINYUSB_OPT_OS OPT_OS_PICO)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2022-04-29 22:24:36 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | #------------------------------------
 | 
					
						
							|  |  |  | # Base config for both device and host; wrapped by SDK's tinyusb_common
 | 
					
						
							|  |  |  | #------------------------------------
 | 
					
						
							|  |  |  | add_library(tinyusb_common_base INTERFACE)
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | target_sources(tinyusb_common_base INTERFACE | 
					
						
							| 
									
										
										
										
											2024-04-19 14:05:31 +07:00
										 |  |  | 	${TOP}/src/tusb.c
 | 
					
						
							|  |  |  | 	${TOP}/src/common/tusb_fifo.c
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | target_include_directories(tinyusb_common_base INTERFACE | 
					
						
							| 
									
										
										
										
											2024-04-19 14:05:31 +07:00
										 |  |  | 	${TOP}/src
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 23:08:59 +07:00
										 |  |  | if(DEFINED LOG)
 | 
					
						
							|  |  |  | 	set(TINYUSB_DEBUG_LEVEL ${LOG})
 | 
					
						
							|  |  |  | elseif (CMAKE_BUILD_TYPE STREQUAL "Debug")
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	message("Compiling TinyUSB with CFG_TUSB_DEBUG=1")
 | 
					
						
							|  |  |  | 	set(TINYUSB_DEBUG_LEVEL 1)
 | 
					
						
							| 
									
										
										
										
											2023-06-26 23:08:59 +07:00
										 |  |  | else ()
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 	set(TINYUSB_DEBUG_LEVEL 0)
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-01-24 00:12:20 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | target_compile_definitions(tinyusb_common_base INTERFACE | 
					
						
							| 
									
										
										
										
											2024-04-19 14:05:31 +07:00
										 |  |  | 	CFG_TUSB_MCU=OPT_MCU_RP2040
 | 
					
						
							|  |  |  | 	CFG_TUSB_OS=${TINYUSB_OPT_OS}
 | 
					
						
							|  |  |  | 	CFG_TUSB_DEBUG=${TINYUSB_DEBUG_LEVEL}
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 23:08:59 +07:00
										 |  |  | target_link_libraries(tinyusb_common_base INTERFACE | 
					
						
							|  |  |  | 	hardware_structs
 | 
					
						
							|  |  |  | 	hardware_irq
 | 
					
						
							|  |  |  | 	hardware_resets
 | 
					
						
							|  |  |  | 	pico_sync
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 	)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | #------------------------------------
 | 
					
						
							|  |  |  | # Base config for device mode; wrapped by SDK's tinyusb_device
 | 
					
						
							|  |  |  | #------------------------------------
 | 
					
						
							|  |  |  | add_library(tinyusb_device_base INTERFACE)
 | 
					
						
							|  |  |  | target_sources(tinyusb_device_base INTERFACE | 
					
						
							|  |  |  | 		${TOP}/src/portable/raspberrypi/rp2040/dcd_rp2040.c
 | 
					
						
							|  |  |  | 		${TOP}/src/portable/raspberrypi/rp2040/rp2040_usb.c
 | 
					
						
							|  |  |  | 		${TOP}/src/device/usbd.c
 | 
					
						
							|  |  |  | 		${TOP}/src/device/usbd_control.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/audio/audio_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/cdc/cdc_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/dfu/dfu_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/dfu/dfu_rt_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/hid/hid_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/midi/midi_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/msc/msc_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/net/ecm_rndis_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/net/ncm_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/usbtmc/usbtmc_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/vendor/vendor_device.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/video/video_device.c
 | 
					
						
							|  |  |  | 		)
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-12 11:34:32 +07:00
										 |  |  | #------------------------------------
 | 
					
						
							|  |  |  | # Base config for host mode; wrapped by SDK's tinyusb_host
 | 
					
						
							|  |  |  | #------------------------------------
 | 
					
						
							|  |  |  | add_library(tinyusb_host_base INTERFACE)
 | 
					
						
							|  |  |  | target_sources(tinyusb_host_base INTERFACE | 
					
						
							|  |  |  | 		${TOP}/src/portable/raspberrypi/rp2040/hcd_rp2040.c
 | 
					
						
							|  |  |  | 		${TOP}/src/portable/raspberrypi/rp2040/rp2040_usb.c
 | 
					
						
							|  |  |  | 		${TOP}/src/host/usbh.c
 | 
					
						
							|  |  |  | 		${TOP}/src/host/hub.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/cdc/cdc_host.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/hid/hid_host.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/midi/midi_host.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/msc/msc_host.c
 | 
					
						
							|  |  |  | 		${TOP}/src/class/vendor/vendor_host.c
 | 
					
						
							|  |  |  | 		)
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | # Sometimes have to do host specific actions in mostly common functions
 | 
					
						
							|  |  |  | target_compile_definitions(tinyusb_host_base INTERFACE | 
					
						
							|  |  |  | 		RP2040_USB_HOST_MODE=1
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | #------------------------------------
 | 
					
						
							|  |  |  | # Host MAX3421
 | 
					
						
							|  |  |  | #------------------------------------
 | 
					
						
							|  |  |  | add_library(tinyusb_host_max3421 INTERFACE)
 | 
					
						
							|  |  |  | target_sources(tinyusb_host_max3421 INTERFACE | 
					
						
							|  |  |  | 	${TOP}/src/portable/analog/max3421/hcd_max3421.c
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							|  |  |  | target_compile_definitions(tinyusb_host_max3421 INTERFACE | 
					
						
							|  |  |  | 	CFG_TUH_MAX3421=1
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							|  |  |  | target_link_libraries(tinyusb_host_max3421 INTERFACE | 
					
						
							|  |  |  | 	hardware_spi
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2022-04-29 22:24:36 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | #------------------------------------
 | 
					
						
							|  |  |  | # BSP & Additions
 | 
					
						
							|  |  |  | #------------------------------------
 | 
					
						
							|  |  |  | add_library(tinyusb_bsp INTERFACE)
 | 
					
						
							|  |  |  | target_sources(tinyusb_bsp INTERFACE | 
					
						
							| 
									
										
										
										
											2023-06-26 23:08:59 +07:00
										 |  |  | 	${TOP}/hw/bsp/rp2040/family.c
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							|  |  |  | target_include_directories(tinyusb_bsp INTERFACE | 
					
						
							|  |  |  | 	${TOP}/hw
 | 
					
						
							| 
									
										
										
										
											2025-02-20 15:47:29 +07:00
										 |  |  | 	${CMAKE_CURRENT_LIST_DIR}/boards/${BOARD}
 | 
					
						
							| 
									
										
										
										
											2023-06-26 23:08:59 +07:00
										 |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2024-07-29 12:34:25 -05:00
										 |  |  | target_link_libraries(tinyusb_bsp INTERFACE | 
					
						
							|  |  |  | 	pico_unique_id
 | 
					
						
							|  |  |  | 	hardware_clocks
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2021-06-02 08:32:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | # tinyusb_additions will hold our extra settings for examples
 | 
					
						
							|  |  |  | add_library(tinyusb_additions INTERFACE)
 | 
					
						
							| 
									
										
										
										
											2021-01-24 00:12:20 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | target_compile_definitions(tinyusb_additions INTERFACE | 
					
						
							|  |  |  | 	PICO_RP2040_USB_DEVICE_ENUMERATION_FIX=1
 | 
					
						
							|  |  |  | 	PICO_RP2040_USB_DEVICE_UFRAME_FIX=1
 | 
					
						
							|  |  |  | )
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | if(LOGGER STREQUAL "RTT" OR LOGGER STREQUAL "rtt")
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | 	target_compile_definitions(tinyusb_additions INTERFACE | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			LOGGER_RTT
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | 			#SEGGER_RTT_MODE_DEFAULT=SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	target_sources(tinyusb_additions INTERFACE | 
					
						
							|  |  |  | 			${TOP}/lib/SEGGER_RTT/RTT/SEGGER_RTT.c
 | 
					
						
							|  |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	set_source_files_properties(${TOP}/lib/SEGGER_RTT/RTT/SEGGER_RTT.c | 
					
						
							|  |  |  | 		PROPERTIES
 | 
					
						
							|  |  |  | 		COMPILE_FLAGS "-Wno-cast-qual -Wno-cast-align -Wno-sign-conversion")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	target_include_directories(tinyusb_additions INTERFACE | 
					
						
							|  |  |  | 			${TOP}/lib/SEGGER_RTT/RTT
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | 	)
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | #------------------------------------
 | 
					
						
							|  |  |  | # Functions
 | 
					
						
							|  |  |  | #------------------------------------
 | 
					
						
							| 
									
										
										
										
											2021-01-24 00:12:20 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | function(family_configure_target TARGET RTOS)
 | 
					
						
							|  |  |  | 	if (RTOS STREQUAL noos OR RTOS STREQUAL "")
 | 
					
						
							|  |  |  | 		set(RTOS_SUFFIX "")
 | 
					
						
							|  |  |  | 	else()
 | 
					
						
							|  |  |  | 		set(RTOS_SUFFIX _${RTOS})
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | 	endif()
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 	# export RTOS_SUFFIX to parent scope
 | 
					
						
							|  |  |  | 	set(RTOS_SUFFIX ${RTOS_SUFFIX} PARENT_SCOPE)
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-18 16:18:58 +07:00
										 |  |  | 	# compile define from command line
 | 
					
						
							| 
									
										
										
										
											2024-06-25 11:31:19 +07:00
										 |  |  | 	if(DEFINED CFLAGS_CLI)
 | 
					
						
							| 
									
										
										
										
											2024-11-27 11:10:06 +07:00
										 |  |  | 		separate_arguments(CFLAGS_CLI)
 | 
					
						
							| 
									
										
										
										
											2024-06-25 11:31:19 +07:00
										 |  |  | 		target_compile_options(${TARGET} PUBLIC ${CFLAGS_CLI})
 | 
					
						
							| 
									
										
										
										
											2024-06-18 16:18:58 +07:00
										 |  |  | 	endif()
 | 
					
						
							| 
									
										
										
										
											2022-05-20 17:25:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	pico_add_extra_outputs(${TARGET})
 | 
					
						
							|  |  |  | 	pico_enable_stdio_uart(${TARGET} 1)
 | 
					
						
							| 
									
										
										
										
											2024-03-22 17:54:08 +07:00
										 |  |  | 	target_link_libraries(${TARGET} PUBLIC pico_stdlib tinyusb_board${RTOS_SUFFIX} tinyusb_additions)
 | 
					
						
							| 
									
										
										
										
											2022-05-20 17:25:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-06 10:52:52 +07:00
										 |  |  | 	family_flash_openocd(${TARGET})
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 	family_flash_jlink(${TARGET})
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | endfunction()
 | 
					
						
							| 
									
										
										
										
											2022-05-10 21:56:47 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | function(rp2040_family_configure_example_warnings TARGET)
 | 
					
						
							|  |  |  | 	if (NOT PICO_TINYUSB_NO_EXAMPLE_WARNINGS)
 | 
					
						
							|  |  |  | 		family_add_default_example_warnings(${TARGET})
 | 
					
						
							|  |  |  | 	endif()
 | 
					
						
							|  |  |  | 	if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
 | 
					
						
							|  |  |  | 		target_compile_options(${TARGET} PRIVATE -Wno-unreachable-code)
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | 	endif()
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	suppress_tinyusb_warnings()
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							| 
									
										
										
										
											2021-01-29 11:24:05 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-29 22:24:36 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | function(family_configure_device_example TARGET RTOS)
 | 
					
						
							|  |  |  | 	family_configure_target(${TARGET} ${RTOS})
 | 
					
						
							|  |  |  | 	target_link_libraries(${TARGET} PUBLIC pico_stdlib tinyusb_device${RTOS_SUFFIX})
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	rp2040_family_configure_example_warnings(${TARGET})
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | function(family_add_pico_pio_usb TARGET)
 | 
					
						
							|  |  |  | 	target_link_libraries(${TARGET} PUBLIC tinyusb_pico_pio_usb)
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-30 18:41:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-18 11:04:43 -05:00
										 |  |  | # since Pico-PIO_USB compiler support may lag, and change from version to version, add a function that pico-sdk/pico-examples
 | 
					
						
							|  |  |  | # can check (if present) in case the user has updated their TinyUSB
 | 
					
						
							|  |  |  | function(is_compiler_supported_by_pico_pio_usb OUTVAR)
 | 
					
						
							|  |  |  | 	if ((NOT CMAKE_C_COMPILER_ID STREQUAL "GNU"))
 | 
					
						
							|  |  |  | 		SET(${OUTVAR} 0 PARENT_SCOPE)
 | 
					
						
							|  |  |  | 	else()
 | 
					
						
							|  |  |  | 		set(${OUTVAR} 1 PARENT_SCOPE)
 | 
					
						
							|  |  |  | 	endif()
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | function(family_configure_host_example TARGET RTOS)
 | 
					
						
							|  |  |  | 	family_configure_target(${TARGET} ${RTOS})
 | 
					
						
							|  |  |  | 	target_link_libraries(${TARGET} PUBLIC pico_stdlib tinyusb_host${RTOS_SUFFIX})
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	rp2040_family_configure_example_warnings(${TARGET})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# For rp2040 enable pico-pio-usb
 | 
					
						
							|  |  |  | 	if (TARGET tinyusb_pico_pio_usb)
 | 
					
						
							| 
									
										
										
										
											2023-07-18 11:04:43 -05:00
										 |  |  | 		# Pico-PIO-USB does not compile with all pico-sdk supported compilers, so check before enabling it
 | 
					
						
							|  |  |  | 		is_compiler_supported_by_pico_pio_usb(PICO_PIO_USB_COMPILER_SUPPORTED)
 | 
					
						
							|  |  |  | 		if (PICO_PIO_USB_COMPILER_SUPPORTED)
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			family_add_pico_pio_usb(${PROJECT})
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 		endif()
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	endif()
 | 
					
						
							| 
									
										
										
										
											2023-12-26 22:50:01 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	# for max3421 host
 | 
					
						
							|  |  |  | 	if (MAX3421_HOST STREQUAL "1")
 | 
					
						
							|  |  |  | 		target_link_libraries(${TARGET} PUBLIC tinyusb_host_max3421)
 | 
					
						
							|  |  |  | 	endif()
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | function(family_configure_dual_usb_example TARGET RTOS)
 | 
					
						
							|  |  |  | 	family_configure_target(${TARGET} ${RTOS})
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	# require tinyusb_pico_pio_usb
 | 
					
						
							|  |  |  | 	target_link_libraries(${TARGET} PUBLIC pico_stdlib tinyusb_device tinyusb_host tinyusb_pico_pio_usb )
 | 
					
						
							|  |  |  | 	rp2040_family_configure_example_warnings(${TARGET})
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | function(check_and_add_pico_pio_usb_support)
 | 
					
						
							|  |  |  | 	# check for pico_generate_pio_header (as depending on environment we may be called before SDK is
 | 
					
						
							|  |  |  | 	# initialized in which case it isn't available yet), and only do the initialization once
 | 
					
						
							|  |  |  | 	if (COMMAND pico_generate_pio_header AND NOT TARGET tinyusb_pico_pio_usb)
 | 
					
						
							|  |  |  | 		#------------------------------------
 | 
					
						
							|  |  |  | 		# PIO USB for both host and device
 | 
					
						
							|  |  |  | 		#------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (NOT DEFINED PICO_PIO_USB_PATH)
 | 
					
						
							|  |  |  | 			set(PICO_PIO_USB_PATH "${TOP}/hw/mcu/raspberry_pi/Pico-PIO-USB")
 | 
					
						
							| 
									
										
										
										
											2022-05-20 17:25:30 -05:00
										 |  |  | 		endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 		if (EXISTS ${PICO_PIO_USB_PATH}/src/pio_usb.c)
 | 
					
						
							|  |  |  | 			add_library(tinyusb_pico_pio_usb INTERFACE)
 | 
					
						
							|  |  |  | 			target_sources(tinyusb_device_base INTERFACE | 
					
						
							|  |  |  | 					${TOP}/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c
 | 
					
						
							|  |  |  | 					)
 | 
					
						
							|  |  |  | 			target_sources(tinyusb_host_base INTERFACE | 
					
						
							|  |  |  | 					${TOP}/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
 | 
					
						
							|  |  |  | 					)
 | 
					
						
							| 
									
										
										
										
											2022-05-20 17:25:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			target_sources(tinyusb_pico_pio_usb INTERFACE | 
					
						
							|  |  |  | 					${PICO_PIO_USB_PATH}/src/pio_usb.c
 | 
					
						
							|  |  |  | 					${PICO_PIO_USB_PATH}/src/pio_usb_host.c
 | 
					
						
							|  |  |  | 					${PICO_PIO_USB_PATH}/src/pio_usb_device.c
 | 
					
						
							|  |  |  | 					${PICO_PIO_USB_PATH}/src/usb_crc.c
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 					)
 | 
					
						
							| 
									
										
										
										
											2023-02-03 11:05:32 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			target_include_directories(tinyusb_pico_pio_usb INTERFACE | 
					
						
							|  |  |  | 					${PICO_PIO_USB_PATH}/src
 | 
					
						
							|  |  |  | 					)
 | 
					
						
							| 
									
										
										
										
											2023-02-03 11:05:32 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			target_link_libraries(tinyusb_pico_pio_usb INTERFACE | 
					
						
							|  |  |  | 					hardware_dma
 | 
					
						
							|  |  |  | 					hardware_pio
 | 
					
						
							|  |  |  | 					pico_multicore
 | 
					
						
							|  |  |  | 					)
 | 
					
						
							| 
									
										
										
										
											2022-05-20 17:25:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			target_compile_definitions(tinyusb_pico_pio_usb INTERFACE | 
					
						
							|  |  |  | 					PIO_USB_USE_TINYUSB
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 					)
 | 
					
						
							| 
									
										
										
										
											2023-02-03 11:05:32 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 			pico_generate_pio_header(tinyusb_pico_pio_usb ${PICO_PIO_USB_PATH}/src/usb_tx.pio)
 | 
					
						
							|  |  |  | 			pico_generate_pio_header(tinyusb_pico_pio_usb ${PICO_PIO_USB_PATH}/src/usb_rx.pio)
 | 
					
						
							|  |  |  | 		endif()
 | 
					
						
							|  |  |  | 	endif()
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Try to add Pico-PIO_USB support now for the case where this file is included directly
 | 
					
						
							|  |  |  | # after Pico SDK initialization, but without using the family_ functions (as is the case
 | 
					
						
							|  |  |  | # when included by the SDK itself)
 | 
					
						
							|  |  |  | check_and_add_pico_pio_usb_support()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | function(family_initialize_project PROJECT DIR)
 | 
					
						
							|  |  |  | 	# call the original version of this function from family_common.cmake
 | 
					
						
							|  |  |  | 	_family_initialize_project(${PROJECT} ${DIR})
 | 
					
						
							|  |  |  | 	enable_language(C CXX ASM)
 | 
					
						
							|  |  |  | 	pico_sdk_init()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	# now re-check for adding Pico-PIO_USB support now SDK is definitely available
 | 
					
						
							|  |  |  | 	check_and_add_pico_pio_usb_support()
 | 
					
						
							|  |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-27 15:45:38 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | # This method must be called from the project scope to suppress known warnings in TinyUSB source files
 | 
					
						
							|  |  |  | function(suppress_tinyusb_warnings)
 | 
					
						
							|  |  |  | 	# some of these are pretty silly warnings only occurring in some older GCC versions 9 or prior
 | 
					
						
							|  |  |  | 	if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
 | 
					
						
							|  |  |  | 		if (CMAKE_C_COMPILER_VERSION VERSION_LESS 10.0)
 | 
					
						
							|  |  |  | 			set(CONVERSION_WARNING_FILES | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/tusb.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/common/tusb_fifo.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/device/usbd.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/device/usbd_control.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/host/usbh.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/cdc/cdc_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/cdc/cdc_host.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/hid/hid_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/hid/hid_host.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/audio/audio_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/dfu/dfu_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/dfu/dfu_rt_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/midi/midi_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/usbtmc/usbtmc_device.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/portable/raspberrypi/rp2040/hcd_rp2040.c
 | 
					
						
							|  |  |  | 				)
 | 
					
						
							|  |  |  | 			foreach(SOURCE_FILE IN LISTS CONVERSION_WARNING_FILES)
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 				set_source_files_properties( | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 						${SOURCE_FILE}
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 						PROPERTIES
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 						COMPILE_FLAGS "-Wno-conversion")
 | 
					
						
							|  |  |  | 			endforeach()
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 		endif()
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 		if (CMAKE_C_COMPILER_ID STREQUAL "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 11.0)
 | 
					
						
							| 
									
										
										
										
											2023-03-02 14:32:22 -06:00
										 |  |  | 			set_source_files_properties( | 
					
						
							|  |  |  | 					${PICO_TINYUSB_PATH}/lib/fatfs/source/ff.c
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 					COMPILE_FLAGS "-Wno-stringop-overflow -Wno-array-bounds")
 | 
					
						
							|  |  |  | 		endif()
 | 
					
						
							|  |  |  | 		set_source_files_properties( | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/fatfs/source/ff.c
 | 
					
						
							|  |  |  | 				PROPERTIES
 | 
					
						
							|  |  |  | 				COMPILE_FLAGS "-Wno-conversion -Wno-cast-qual")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		set_source_files_properties( | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/lwip/src/core/tcp_in.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/lwip/src/core/tcp_out.c
 | 
					
						
							|  |  |  | 				PROPERTIES
 | 
					
						
							|  |  |  | 				COMPILE_FLAGS "-Wno-conversion")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		set_source_files_properties( | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/networking/dnserver.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/networking/dhserver.c
 | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/networking/rndis_reports.c
 | 
					
						
							|  |  |  | 				PROPERTIES
 | 
					
						
							|  |  |  | 				COMPILE_FLAGS "-Wno-conversion -Wno-sign-conversion")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (TARGET tinyusb_pico_pio_usb)
 | 
					
						
							|  |  |  | 			set_source_files_properties( | 
					
						
							|  |  |  | 					${PICO_TINYUSB_PATH}/hw/mcu/raspberry_pi/Pico-PIO-USB/src/pio_usb_device.c
 | 
					
						
							|  |  |  | 					${PICO_TINYUSB_PATH}/hw/mcu/raspberry_pi/Pico-PIO-USB/src/pio_usb.c
 | 
					
						
							|  |  |  | 					${PICO_TINYUSB_PATH}/hw/mcu/raspberry_pi/Pico-PIO-USB/src/pio_usb_host.c
 | 
					
						
							|  |  |  | 					${PICO_TINYUSB_PATH}/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
 | 
					
						
							| 
									
										
										
										
											2023-03-02 14:32:22 -06:00
										 |  |  | 					PROPERTIES
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 					COMPILE_FLAGS "-Wno-conversion -Wno-cast-qual -Wno-attributes")
 | 
					
						
							| 
									
										
										
										
											2022-07-12 12:58:30 -05:00
										 |  |  | 		endif()
 | 
					
						
							| 
									
										
										
										
											2023-06-26 17:54:31 +07:00
										 |  |  | 	elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang")
 | 
					
						
							|  |  |  | 		set_source_files_properties( | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/cdc/cdc_device.c
 | 
					
						
							|  |  |  | 				COMPILE_FLAGS "-Wno-unreachable-code")
 | 
					
						
							|  |  |  | 		set_source_files_properties( | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/src/class/cdc/cdc_host.c
 | 
					
						
							|  |  |  | 				COMPILE_FLAGS "-Wno-unreachable-code-fallthrough")
 | 
					
						
							|  |  |  | 		set_source_files_properties( | 
					
						
							|  |  |  | 				${PICO_TINYUSB_PATH}/lib/fatfs/source/ff.c
 | 
					
						
							|  |  |  | 				PROPERTIES
 | 
					
						
							|  |  |  | 				COMPILE_FLAGS "-Wno-cast-qual")
 | 
					
						
							|  |  |  | 	endif()
 | 
					
						
							|  |  |  | endfunction()
 |