| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-08-10 | update node script to always shift dummy reportID like python | hathach | |
| allow specify all product id with 0xFFFF in boards.js | |||
| 2021-08-09 | Update systick reload value | Stefan Kerkmann | |
| The systick timer is driven by the AHB bus divided by 4, set the correct reload value to generate a timer irq every ms. | |||
| 2021-08-09 | fix hid_test.py for hid inout to correctly preceeded with dummy reportID | hathach | |
| add note for install hidapi on windows | |||
| 2021-08-09 | Merge pull request #1004 from ctag-fh-kiel/master | Ha Thach | |
| STM32L151 portable driver adaptations | |||
| 2021-08-08 | STM32L151 portable driver adaptations | Robert Manzke | |
| 2021-08-07 | Minor style changes | Stefan Kerkmann | |
| 2021-08-07 | Use linear buffer for GD32VF103 | Stefan Kerkmann | |
| As the peripheral is the same as on the STM32F1 and STM32F4 lines we do the same. | |||
| 2021-08-07 | Remove unnecessary define guard | Stefan Kerkmann | |
| The GD32VF103 family only has USB-OTG peripherals. | |||
| 2021-08-07 | Code style changes | Stefan Kerkmann | |
| 2021-08-07 | Use functions provided by the nuclei-sdk hal | Stefan Kerkmann | |
| 2021-08-07 | Correctly initialize and handle the system tick | Stefan Kerkmann | |
| Forgot to reload the systick timer in the irq handler | |||
| 2021-08-07 | Remove unsuitable clock configurations from init code | Stefan Kerkmann | |
| Only 48MHz, 72MHz, 96MHz and 120 MHz system clocks derived from an external crystal are suitable for the usb peripheral, as the internal oscillator is not stable enough. Also the usb-prescaler only supports division by 1 (48MHZ), 1.5(72MHz), 2(96MHz) and 2.5(120Mhz). 120Mhz is also out of spec and not added here. | |||
| 2021-08-07 | Use nuclei-sdk functions for init code | Stefan Kerkmann | |
| Instead of using the HAL functions we can just use the defines from the board support for the longan nano that comes with the nuclei-sdk. Also we move some includes and defines to the header file. | |||
| 2021-08-07 | Cleanup include paths and use linker files from nuclei-sdk | Stefan Kerkmann | |
| 2021-08-07 | Remove redundant linker files | Stefan Kerkmann | |
| We use the linker files provided by nuclei-sdk instead | |||
| 2021-08-07 | Add correct endpoint count for GD32VF103 | Stefan Kerkmann | |
| This controller family only supports USB FS with four endpoints | |||
| 2021-08-07 | Remove dependencies to external libraries for the dcd driver | Stefan Kerkmann | |
| The core of tinyusb must be as independent as possible, we previously relied on nuclei-sdk or the GD32VF103 firmware library for the synopsys driver to work with the GD32VF103. Fortunatly we needed very few parts from them so we implement them here. | |||
| 2021-08-06 | Merge pull request #985 from HiFiPhile/same70 | Ha Thach | |
| SAMx7x improvements | |||
| 2021-08-06 | Merge pull request #1000 from hathach/more-doc | Ha Thach | |
| More doc | |||
| 2021-08-05 | update link to docs.tinyusb.org | hathach | |
| 2021-08-05 | change webusb-serial landing page | hathach | |
| - to example.tinyusb.org/webusb-serial/ - remove landing page from doc | |||
| 2021-08-05 | Minor fix. | MasterPhi | |
| 2021-08-05 | add html extra for webusb example | hathach | |
| 2021-08-05 | rename to .readthedocs.yaml | hathach | |
| exclude all submodules for docs | |||
| 2021-08-04 | Merge pull request #997 from hathach/perigoso-readme-patch | Rafael Silva | |
| readme: fix link to online documentation | |||
| 2021-08-04 | readme: fix link to online documentation | Rafael Silva | |
| 2021-08-04 | Merge pull request #983 from perigoso/docs | Ha Thach | |
| Docs | |||
| 2021-08-03 | Add stm32 license header | Stefan Kerkmann | |
| 2021-08-03 | Revert "Disable -Werror for now" | Stefan Kerkmann | |
| This reverts commit 5e0c2e122300e7a6289b3bd08044f9cf1dbdef05. | |||
| 2021-08-03 | Update nuclei-sdk with __riscv_flen fix | Stefan Kerkmann | |
| 2021-08-03 | Set FreeRTOS to RISC-V (doesn't compile) | Stefan Kerkmann | |
| 2021-08-03 | Use JTAG for jlink flashing | Stefan Kerkmann | |
| 2021-08-03 | Minor clean ups | Stefan Kerkmann | |
| 2021-08-03 | Use https github as submodule | Stefan Kerkmann | |
| 2021-08-03 | Disable -Werror for now | Stefan Kerkmann | |
| Without having __riscv_flen defined we get multiple warinings. But defining it causes the startup code to contain floating point instructions. This results in a exception right after booting. See startup_gd32vf103.S lines 289-294 should open a PR at nuclei sdk | |||
| 2021-08-03 | Add board support for gd32vf103 longan nano | Stefan Kerkmann | |
| 2021-08-03 | Add hacky GD32VF103 support | Stefan Kerkmann | |
| 2021-08-03 | add back info to readme, use stack.svg | hathach | |
| 2021-08-02 | net_lwip_webserver: utilize pbuf_copy_partial() | Peter Lawrence | |
| 2021-08-02 | Add @HiFiPhile in CONTRIBUTORS.rst | HiFiPhile | |
| 2021-08-02 | Merge pull request #991 from hathach/fix-midi-available | Ha Thach | |
| correct midi available with already stream read | |||
| 2021-08-02 | fix warning | hathach | |
| 2021-08-02 | correct midi available with already stream read | hathach | |
| 2021-08-02 | Merge pull request #874 from kkitayam/add_xfer_fifo_for_rx63 | Ha Thach | |
| Add dcd_edpt_xfer_fifo() for RX63N | |||
| 2021-07-31 | fix: D0FIFOSEL setting was incorrectly when big-endian is selected. | kkitayam | |
| In pipe_xfer_in(), the endianness setting of D0FIFOSEL was lacking due to refactoring. And add type cast operation to avoid warnings by CCRX. | |||
| 2021-07-30 | Move register define to separate header. | MasterPhi | |
| 2021-07-30 | docs/supported: add Waveshare OpenH743I-C to board support list | perigoso | |
| Signed-off-by: perigoso <[email protected]> | |||
| 2021-07-30 | readme: add local links to documentation | perigoso | |
| Signed-off-by: perigoso <[email protected]> | |||
| 2021-07-30 | readme: convert md readme to rst | perigoso | |
| Signed-off-by: perigoso <[email protected]> | |||
| 2021-07-30 | docs/contributors: add credit for docs | perigoso | |
| Signed-off-by: perigoso <[email protected]> | |||
