summaryrefslogtreecommitdiff
path: root/hw/bsp
AgeCommit message (Collapse)Author
2020-05-31able to detect as hshathach
2020-05-29fix idf usb pin init changeshathach
2020-05-27adding h743 uart, but not enabled yet since it conflict with OTG_FS2hathach
2020-05-26update h743eval with rhport=1 highspeedhathach
2020-05-26merge CFG_TUSB_RHPORT1_MODE into CFG_TUSB_RHPORT0_MODEhathach
each port is 1 byte for easy maintenance
2020-05-26wiphathach
2020-05-23board test work finehathach
2020-05-22update makefile to build with ohci hosthathach
update ses project for lpc1769 with rtt
2020-05-22Merge branch 'master' into update-hosthathach
2020-05-19usb0 host on mcb1800 work with fullspeed mode.hathach
use usbh_edpt_open() to correctly map ep2drv[]
2020-05-18fix cast-align warning for nuc505hathach
2020-05-17enable -Wcast-alignhathach
suppress vendor sdk driver at board.mk
2020-05-15Add support for stm32f746nucleo boardMark Olsson
2020-05-06stm32l476disco: Fix system clock setupJerzy Kasenberg
Code suggested that PLL with MSI is used resulting in 80MHz clock. When in fact PLL was not configured and system clock was left at MSI 48MHz. This happens because PLL configuration requires that SysTick interrupt has interrupt priority level configured correctly. As it seems ST code intentionally setups variable uwTickPrio to invalid value and later when it is not setup by user code configuration of oscillator will fail before PLL is configured. This simple changes systick priority to some valid value that allows clock to use PLL.
2020-05-06stm32l476disco: fix uninitialized filed usageJerzy Kasenberg
Field PLLState was not initialized in RCC_OscInitStruct.PLL in function SystemClock_Config(). Value is used in HAL_RCC_OscConfig() regardless of oscillator. In lucky case value would be 0 RCC_PLL_NONE and nothing would happen. If value was incorrect following line would end up in assert: assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); If value was valid but no RCC_PLL_NONE pll could be configured with some other random values. Setting PLLState to RCC_PLL_NONE eliminates potential problem.
2020-05-04temporarily remove osal_task_delay() from osalhathach
- add hcd_uframe_number() API, update EHCI to return uframe number - get host running on ea4357
2020-05-04clean up things, add makefile for host examplehathach
2020-05-03add uart for mcb1800hathach
2020-04-29fix esp32 ci adding FREERTOS STATIC to sdkconfig defaulthathach
2020-04-22Merge branch 'master' into add-more-examplehathach
2020-04-22added swo as loggerhathach
tested with feather nrf52840 + jlink
2020-04-22add LOGGER option to use rtthathach
update example readme for debug log. Update bug template to ask for LOG as well.
2020-04-20add uart for ea4357hathach
2020-04-17Merge pull request #354 from hathach/cxd56-disconnect-connectHa Thach
Cxd56 disconnect connect
2020-04-17mass rename tud/dcd_irq_handler to tud/dcd_init_handlerhathach
2020-04-17add code for disconnect/connect (not tested)hathach
2020-04-17update per reviewhathach
2020-04-16add dfu generate target for fomuhathach
2020-04-16dcd disconnect/connect for transdimension iphathach
2020-04-11Merge branch 'master' into refactor-irqhandlerHa Thach
2020-04-10change saola-1 led to pin 18 by defaulthathach
2020-04-09add neopixel led strip driver for saola, make saola as an componenthathach
2020-04-08rename hal_dcd_isr to dcd_irq_handler for fomuhathach
2020-04-08move irq from msp430hathach
2020-04-08move irq for stm32 synopsyshathach
2020-04-08move irq for stm32 fsdevhathach
2020-04-08clean uphathach
2020-04-08add TODO for saola on-board neopixelhathach
2020-04-07rename saola to saola_1hathach
2020-04-07add saola button pin support, esp32 build with board_testhathach
2020-04-06fix CROSS_COMPILE for esp32s2hathach
2020-04-06add tud_irq_handler() for all lpc ip3511 (13, 15, 11)hathach
2020-04-06add tud_irq_handler() to all NUC boardhathach
2020-04-06call tud_irq_handler() for all nrf5x boardhathach
2020-04-06mass rename tud_isr to tud_irq_handlerhathach
2020-04-06move irqhandler to applicationhathach
tud_isr() must be called by application to forward the irqhandle to the stack
2020-04-03add saola board.mkhathach
2020-04-01add esp32s2 saola bsphathach
update cdc_msc_freertos main.c to work with esp32s2 add CMake file
2020-03-29Merge pull request #312 from hathach/developHa Thach
house keeping work
2020-03-28Update UARTs for stm32f4xx discovery boards. Other minor cleanups.Nathan Conrad