summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-11-16update rt1060 and rt1064 evkhathach
2023-11-16correct and tested rt1050 evkbhathach
2023-11-16update rt1050 (not tested)hathach
2023-11-16update rt1024 evkhathach
2023-11-16updat rt1020hathach
2023-11-16update rt1015 evkhathach
2023-11-16update metro m7 airlift and sdhathach
2023-11-16update imxrt1010 with mexhathach
2023-11-16add imxrt1170 evkbhathach
2023-11-16add metro m7 1011 sd with trace etm, try to enable but not working yethathach
2023-11-15Merge pull request #2317 from hathach/add-ra2a1-ekHa Thach
add ra2a1 ek
2023-11-15add ra2a1 ekhathach
also make some other changes
2023-11-14Merge pull request #2316 from hathach/typoHa Thach
Typo fix.
2023-11-14Typo fix.HiFiPhile
2023-11-13Merge pull request #2315 from kasjer/kasjer/nucleo-g491reHiFiPhile
Add BSP for nucleo-g491re
2023-11-13Add BSP for nucleo-g491reJerzy Kasenberg
This adds bsp for ST nucleo-g491re board. This is mostly copy of nucleo-f474 only differences being: - PLL configured to 170MHz (not affecting USB which runs on HSI48) - Linker script freshly generated from STM32CubeIDE (smaller RAM) Signed-off-by: Jerzy Kasenberg <[email protected]>
2023-11-13Merge pull request #2314 from jfm92/masterHa Thach
Adding extern C to definitions to allow link on C++ project
2023-11-13Adding extern C to definitions to allow link on C++ projectjfm92
2023-11-07Add historical EP compatibility to bth classAntonio Vázquez Blanco
2023-11-03Merge pull request #2310 from hathach/fix-usbh-enumeration-removal-raceHa Thach
Fix usbh enumeration removal race
2023-11-03fix -Werror=null-dereference warninghathach
2023-11-03fix race condition when dev0 is removed while enumeratinghathach
2023-11-03Merge pull request #2293 from Yveaux/masterHa Thach
Add PlatformIO manifest
2023-11-02Added end of file per ci recommendationYveaux
2023-11-02Merge pull request #2308 from hathach/add-u5-uidHa Thach
add unique id for u5, also allow to build with OPT_OS_CUSTOM
2023-11-02add unique id for u5, also allow to build with OPT_OS_CUSTOMhathach
2023-11-02Merge pull request #2307 from hathach/minor-upate-max3421Ha Thach
skip tuh_max3421_spi_cs_api() in hcd_init()
2023-11-02skip tuh_max3421_spi_cs_api() in hcd_init()hathach
only call tuh_max3421_spi_cs_api() in SPI start/end transfer since Arduino port use this to call begin/endTransaction()
2023-11-02Merge pull request #2302 from HiFiPhile/f4_otgHa Thach
Add STM32F4 OTG_HS support to BSP
2023-11-01Merge pull request #2305 from hathach/remove-legacy-st-synopsys-driverHa Thach
remove legacy driver st/synopsys
2023-11-01remove legacy driver st/synopsyshathach
2023-11-01Merge pull request #2304 from hathach/update-docHa Thach
Update doc & add Adafruit as sponsor in readme
2023-11-01more readmehathach
2023-11-01add target link to adafruit logohathach
2023-11-01resize logo, add white backgroundhathach
2023-11-01update readme, add sponsor sectionhathach
2023-10-31Update makeHiFiPhile
2023-10-31Add STM32F4 OTG_FS pin to BSP.HiFiPhile
2023-10-31Fix STM32F7 OTG_HS GPIO alt mapping.HiFiPhile
2023-10-31update doc to add supported mcushathach
2023-10-31Merge pull request #2300 from hathach/add-u5a5Ha Thach
Add support for stm32u5a5 (highspeed with built-in femtoPHY)
2023-10-31update stm32u5xx_hal_driver, fix build with old u575 boardhathach
2023-10-31dwc2 flush tx,rx fifo in dcd_init()hathach
2023-10-31uart working on u5a5hathach
2023-10-31usb on u5a5 hs work well with correct VBVALEXTOEN/VBVALOVAL sethathach
2023-10-31minor clean uphathach
2023-10-30minor space format dwc2 driverhathach
2023-10-30addd dwc2_info.py/md update stm32u5a5 board clock & power configure, able to ↵hathach
get passed otg clock reset
2023-10-30Merge pull request #2291 from hathach/minor-update-max3421Ha Thach
minor update for max3421
2023-10-29Add CodeQL Workflow for Code Security AnalysisBrian
Add CodeQL Workflow for Code Security Analysis This pull request introduces a CodeQL workflow to enhance the security analysis of our repository. CodeQL is a powerful static analysis tool that helps identify and mitigate security vulnerabilities in our codebase. By integrating this workflow into our GitHub Actions, we can proactively identify and address potential issues before they become security threats. We added a new CodeQL workflow file (.github/workflows/codeql.yml) that - Runs on every pull request (functionality to run on every push to main branches is included as a comment for convenience). - Runs daily. - Excludes queries with a high false positive rate or low-severity findings. - Does not display results for git submodules, focusing only on our own codebase. Testing: To validate the functionality of this workflow, we have run several test scans on the codebase and reviewed the results. The workflow successfully compiles the project, identifies issues, and provides actionable insights while reducing noise by excluding certain queries and third-party code. Deployment: Once this pull request is merged, the CodeQL workflow will be active and automatically run on every push and pull request to the main branch. To view the results of these code scans, please follow these steps: 1. Under the repository name, click on the Security tab. 2. In the left sidebar, click Code scanning alerts. Additional Information: - You can further customize the workflow to adapt to your specific needs by modifying the workflow file. - For more information on CodeQL and how to interpret its results, refer to the GitHub documentation and the CodeQL documentation (https://codeql.github.com/ and https://codeql.github.com/docs/). Signed-off-by: Brian <[email protected]>