| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-08-07 | Merge pull request #2151 from kilograham/rp2040_build_fixes | Ha Thach | |
| Fix build issues when building for RP2040 from pico-examples/pico-sdk. | |||
| 2023-08-04 | add cmake for all board in stm32f4. fix build, also move ci for f4 from ↵ | hathach | |
| makefile to cmake | |||
| 2023-08-04 | Merge branch 'master' into blackf407VE | hathach | |
| 2023-08-04 | Merge pull request #2204 from hathach/enhance-bsp | Ha Thach | |
| Enhance bsp | |||
| 2023-08-04 | Merge pull request #2133 from greatscottgadgets/cynthion_support | Ha Thach | |
| Update support for Cynthion boards | |||
| 2023-08-04 | Merge branch 'master' into enhance-bsp | hathach | |
| 2023-08-04 | add uid for some stm32 | hathach | |
| 2023-08-03 | add board_get_unique_id() for serial number | hathach | |
| implemented board_get_unique_id() for rp2040 and L4 | |||
| 2023-08-03 | Merge pull request #2052 from arduino/renesas_ra_hs_rebased | Ha Thach | |
| Renesas_RA: add support for board with HS USB port | |||
| 2023-08-03 | more board_api rename | hathach | |
| 2023-08-03 | add lpc43 family | hathach | |
| 2023-08-03 | more board_api.h rename | hathach | |
| 2023-08-03 | rename hw/bsp/board.h to board_api.h | hathach | |
| 2023-08-03 | rename ch32v307 and tm4c123 to use underscore | hathach | |
| 2023-08-03 | configQUEUE_REGISTRY_SIZE=4 for lpc18 | hathach | |
| 2023-08-03 | add osal queue name if needed | hathach | |
| also mass change configQUEUE_REGISTRY_SIZE = 4 | |||
| 2023-08-02 | fix pre-commit, also skip lto for rp2040 | hathach | |
| 2023-08-01 | Fix STM32G0 build. | HiFiPhile | |
| 2023-08-01 | fix build with -flto | hathach | |
| 2023-08-01 | add rusb2_common.c for dynami irq | hathach | |
| 2023-08-01 | enable flto for ra makefile | hathach | |
| - remove ra from ci make build since it is already in cmake ci | |||
| 2023-08-01 | add portenta c33 bsp, add flash by dfu-util | hathach | |
| 2023-08-01 | fix board name with dash | hathach | |
| 2023-07-31 | enable USBMC for uno r4, add board_init_after_tusb() API | hathach | |
| add BOARD_UPPERCASE for board detection | |||
| 2023-07-31 | enable_irq since uno bootloader can disable it. systick triggered, however ↵ | hathach | |
| usb still not work with uno | |||
| 2023-07-28 | add uno r4 wih FLASH_IMAGE_START=0x4000, running but interrupt (systick) ↵ | hathach | |
| does not seems to work | |||
| 2023-07-28 | Fixed typo in rp2040 hw bspw family.c | 0xCCF4 | |
| 2023-07-27 | Merge branch 'master' into renesas_ra_hs_rebased | hathach | |
| 2023-07-26 | refactored multiple ports for hcd rusb2 | hathach | |
| 2023-07-26 | increase stack size for 6 series to 0x1000, 4 series to 0x800 | hathach | |
| 2023-07-26 | updating hcd rusb2 | hathach | |
| - make osal_task_delay() as weak function in usbh - implement osal_task_delay() in hcd rusb2 (may moved to other places) | |||
| 2023-07-25 | improve processing usb complete and error isr. | hathach | |
| also merge them together | |||
| 2023-07-24 | Merge branch 'master' into hcd-abort-xfer | Ha Thach | |
| 2023-07-24 | add hcd abort xfer for rp2040 pio usb | hathach | |
| 2023-07-24 | minor clean up | hathach | |
| 2023-07-24 | fix ohci warnings, and add freertosconfig for lpc4088 | hathach | |
| 2023-07-24 | add etm trace pinmux for 4088 quickstart | hathach | |
| 2023-07-24 | rename CFG_TUSB_MEM_SECTION to CFG_TUD_MEM_SECTION in device stack | hathach | |
| CFG_TUD_MEM_SECTION is default to CFG_TUSB_MEM_SECTION | |||
| 2023-07-24 | add lpc40 to cmake | hathach | |
| 2023-07-20 | Fix trailing spaces issue | jferreir | |
| 2023-07-20 | fix compilation issues for XMC4500_RELAX | jferreir | |
| 2023-07-20 | Add support for XMC4700_RELAX kit | jferreir | |
| 2023-07-20 | Add UART_DEV support | jferreir | |
| 2023-07-20 | Add UART_DEV support | jferreir | |
| 2023-07-18 | Merge pull request #2152 from kilograham/is_pico_pio_usb_supported | Ha Thach | |
| add is_compiler_supported_by_pico_pio_usb() for rp2040 | |||
| 2023-07-18 | add is_compiler_supported_by_pico_pio_usb() | graham sanderson | |
| previosuly users of TinyUSB (e.g. pico-examples) would have to decide this for themselves. This function couples the check closer with the actual version of Pico-PIO-USB used (since TinyUSB picks) | |||
| 2023-07-18 | Fix build issues when building for RP2040 from pico-examples/pico-sdk. | graham sanderson | |
| * include_guard requires GLOBAL as family.cmake is included in multiple non child places * the following recently added check is suprfluous (family_configure_host_example for rp2040 should do this already), and breaks if pico_pio_usb is not avaialble, so i have removed # Add pico-pio-usb for rp2040 since user can choose to run on bit-banging host if(FAMILY STREQUAL "rp2040") family_add_pico_pio_usb(${PROJECT}) endif() * added new familt_example_missing_dependency functino to print missing dependency warning, so pico-examples can override it to be less in your face, and also more contextual to pico-examples | |||
| 2023-07-18 | fix etm trace clock with stm32h743eval board | hathach | |
| 2023-07-18 | Merge branch 'master' into renesas_ra_hs_rebased | hathach | |
| 2023-07-18 | correct jlink dev for rt1010 | hathach | |
