You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perhaps after #603 has been merged, it would make sense to leave usb/device/dev_lowlevel/ in the same place, but move the TinyUSB device examples to usb/tinyusb/device/ ? 🤔 Alternatively, I guess we could modify usb/CMakeLists.txt to explicitly add_subdirectory(device/dev_lowlevel) in the else () branch shown above?
The text was updated successfully, but these errors were encountered:
Whilst looking at the modifications to
usb/CMakeLists.txt
in #603 I realised that it currently says:This means that the entirety of the
usb/device/
directory (i.e. includingusb/device/dev_lowlevel/
) will get ignored if TinyUSB is unavailable, but according to https://github.com/raspberrypi/pico-examples/tree/develop?tab=readme-ov-file#low-level-example the dev_lowlevel example uses "direct access to the USB hardware (no TinyUSB)".Perhaps after #603 has been merged, it would make sense to leave
usb/device/dev_lowlevel/
in the same place, but move the TinyUSB device examples tousb/tinyusb/device/
? 🤔 Alternatively, I guess we could modifyusb/CMakeLists.txt
to explicitlyadd_subdirectory(device/dev_lowlevel)
in theelse ()
branch shown above?The text was updated successfully, but these errors were encountered: