mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
AP_HAL_ChibiOS: Fix python3 with F7 builds
This commit is contained in:
parent
8a5141f751
commit
b0f4611ddc
@ -152,7 +152,7 @@ def generate_DMAMUX_map_mask(peripheral_list, channel_mask, noshare_list, dma_ex
|
||||
base = idx % 16
|
||||
for i in range(16):
|
||||
found = None
|
||||
for ii in range(base,16) + range(0,base):
|
||||
for ii in list(range(base,16)) + list(range(0,base)):
|
||||
if (1<<ii) & available == 0:
|
||||
continue
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user