| Age | Commit message (Collapse) | Author |
|
|
|
only build webserver example if lwip submodule initialized
|
|
- added back pre-existing board directories which now just select PICO_BOARD
- added boards/pico_sdk which just uses the pre-existing PICO_BOARD setting
- fixed rp2040/family.cmake to include the magic string "CFG_TUSB_MCU=OPT_MCU_RP2040" expected by build_family.py
|
|
- Examples should be CMake buildable from their own subdirectory; such a build will error out based on
matching .skip.MCU_xxx or a mismatched .only.MCU_
- It should be possible to build from a higher level and use .skip.MCU_ and .only.MCU_ to filter which
examples get built
- The intention is for the CMakeLists.txts in the examples to be non family specific and without MCU based IFs. I have
started this work, but am not really sure the state of the esp32 stuff; in any case the plan is to have
everything encapsulated in the FAMILY/family.cmake
- pico_examples now just includes examples/device/CMakeLists.txt and examples/host/CMakeLists.txt directly, as they
also build correctly when included from there.
Note that .skip.MCU_ for esp32 in the directories it wasn't previously avaiable has not been added, as the .skip is common to the regular Makefile builds also. It isn't clear whether these examples should build for esp32, but if not .skip should be added.
|
|
|
|
|
|
|
|
fix warnings
|
|
tud_audio_rx_done_cb() is departed, replace with
tud_audio_rx_done_pre_read_cb()
|
|
add TODO for overflow in tusb_fifo.c
|
|
|
|
Rework Host hid
|
|
|
|
|
|
rename mount, umount callback
|
|
|
|
|
|
|
|
|
|
add hid set_protocol() and set_protocol_complete_cb()
|
|
|
|
|
|
|
|
update API accordingly, update hid parser for usage, and usage_page.
|
|
- remove tuh_n_hid_n_get_report()
- usbh auto queue get report and invoke callback when received data
|
|
|
|
adding hid parser
|
|
|
|
|
|
- remove tuh_device_get_state()
- more hid mouse clean up
|
|
rename HOST_CLASS_HID to CFG_TUH_HID
|
|
|
|
add usbh_get_enum_buf
|
|
|
|
|
|
|
|
- add tud_hid_n_interface_protocol()
- rename tud_hid_n_boot_mode() to tud_hid_n_get_protocol()
- rename tud_hid_boot_mode_cb() to tud_hid_set_protocol_cb()
- add HID_PROTOCOL_BOOT/REPORT to avoid magic number 0,1
- rename HID_PROTOCOL_NONE/KEYBOARD/MOUSE to HID_ITF_PROTOCOL_ to avoid
confusion
|
|
Fix code where HID keyboard was being stuffed into the HID mouse buffer.
|
|
Added new RTOS names to the name string array in print_greeting() in the host example program. The program seemed to hang when a new RTOS was indexed in CFG_TUSB_OS.
|
|
|
|
|
|
Update API description.
|
|
auto-select instead.
|
|
|
|
|
|
|
|
`hw\bsp` separate one family folder to esp32s2, esp32s3
add board specific board.cmake file to override board specific options(features)
fix examples and test scripts to use new family approach
|
|
* Added flash-bmp and debug-bmp targets; added .gdb_history to .gitignore
* Added the BMP variable, defaults to /dev/ttyBmpGdb
The name of the BMP device is different on different systems. On Linux (after installing the recommended udev rules) it'll be /dev/ttyBmpGdb, but the user should be able to override it.
* Update rules.mk
|
|
add support of new esp32s3 target and the board
update the roles.mk wrapper to allow dfu flashing of espressif chip
update examples to allow compilation for esp32s3_addax_1 board
once the code is tested the PR to original tinyusb repo will be submitted
|
|
|