Browse Source

HAL_ChibiOS: H7 doesn't need a DMA mapping for SDMMC

it uses a dedicated internal DMA controller in the SDMMC peripheral
master
Andrew Tridgell 6 years ago
parent
commit
c7ca6d77c7
  1. 3
      libraries/AP_HAL_ChibiOS/hwdef/scripts/chibios_hwdef.py

3
libraries/AP_HAL_ChibiOS/hwdef/scripts/chibios_hwdef.py

@ -1349,7 +1349,8 @@ def build_peripheral_list(): @@ -1349,7 +1349,8 @@ def build_peripheral_list():
if type.startswith('ADC'):
peripherals.append(type)
if type.startswith('SDIO') or type.startswith('SDMMC'):
peripherals.append(type)
if not mcu_series.startswith("STM32H7"):
peripherals.append(type)
if type.startswith('TIM'):
if p.has_extra('RCIN'):
label = p.label

Loading…
Cancel
Save