bus: Don't reserve any pins if BUS_PINS_x is not defined
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -25,9 +25,10 @@ def resolve_bus_name(mcu, param, bus):
|
|||||||
raise ppins.error("Unknown %s '%s'" % (param, bus))
|
raise ppins.error("Unknown %s '%s'" % (param, bus))
|
||||||
# Check for reserved bus pins
|
# Check for reserved bus pins
|
||||||
constants = mcu.get_constants()
|
constants = mcu.get_constants()
|
||||||
reserve_pins = constants.get('BUS_PINS_%s' % (bus,), '')
|
reserve_pins = constants.get('BUS_PINS_%s' % (bus,), None)
|
||||||
for pin in reserve_pins.split(','):
|
if reserve_pins is not None:
|
||||||
ppins.reserve_pin(mcu_name, pin, bus)
|
for pin in reserve_pins.split(','):
|
||||||
|
ppins.reserve_pin(mcu_name, pin, bus)
|
||||||
return bus
|
return bus
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user