Fix dupe usb interrupts in stm32f3
This commit is contained in:
parent
e91df2506b
commit
bdf43a3787
@ -57,6 +57,10 @@ def parse():
|
|||||||
if nvic_version == 'STM32F100E' and name == 'DMA2_Channel4_5':
|
if nvic_version == 'STM32F100E' and name == 'DMA2_Channel4_5':
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# F3 can remap USB IRQs, ignore them.
|
||||||
|
if nvic_version.startswith('STM32F3') and 'remap' in irq['@Comment']:
|
||||||
|
continue
|
||||||
|
|
||||||
signals = set()
|
signals = set()
|
||||||
|
|
||||||
if name in ['NonMaskableInt', 'HardFault', 'MemoryManagement', 'BusFault', 'UsageFault', 'SVCall', 'DebugMonitor', 'PendSV', 'SysTick']:
|
if name in ['NonMaskableInt', 'HardFault', 'MemoryManagement', 'BusFault', 'UsageFault', 'SVCall', 'DebugMonitor', 'PendSV', 'SysTick']:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user