mirror of https://github.com/ARMmbed/mbed-os.git
Fixed reference to global variable instead of input argument in parse_BoardFile
parent
bcd8ebb645
commit
81c3aef9fa
|
@ -1129,7 +1129,7 @@ PinLabel = {}
|
||||||
|
|
||||||
def parse_BoardFile(fileName):
|
def parse_BoardFile(fileName):
|
||||||
print(" * Board file: '%s'" % (fileName))
|
print(" * Board file: '%s'" % (fileName))
|
||||||
board_file = open(board_file_name, "r")
|
board_file = open(fileName, "r")
|
||||||
# IOC_PIN_pattern = re.compile(r'(P[A-I][\d]*).*\.([\w]*)=(.*)')
|
# IOC_PIN_pattern = re.compile(r'(P[A-I][\d]*).*\.([\w]*)=(.*)')
|
||||||
IOC_PIN_pattern = re.compile(r'(.*)\.([\w]*)=(.*)')
|
IOC_PIN_pattern = re.compile(r'(.*)\.([\w]*)=(.*)')
|
||||||
for line in board_file.readlines():
|
for line in board_file.readlines():
|
||||||
|
|
Loading…
Reference in New Issue