@ -1,19 +1,15 @@
#!/usr/bin/env python
#!/usr/bin/env python
""" Creates the pin file for the MIMXRT10xx. """
from __future__ import print_function
from collections import defaultdict
import os
import argparse
import sys
import csv
import re
import re
import sys
SUPPORTED_AFS = { " GPIO " , " USDHC " , " FLEXPWM " , " TMR " }
sys . path . insert ( 0 , os . path . join ( os . path . dirname ( __file__ ) , " ../../../tools " ) )
MAX_AF = 10 # AF0 .. AF9
import boardgen
ADC_COL = 11
regexes = [
IOMUX_REGEXS = [
r " IOMUXC_(?P<pin>GPIO_SD_B \ d_ \ d \ d)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
r " IOMUXC_(?P<pin>GPIO_SD_B \ d_ \ d \ d)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
r " IOMUXC_(?P<pin>GPIO_AD_B \ d_ \ d \ d)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
r " IOMUXC_(?P<pin>GPIO_AD_B \ d_ \ d \ d)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
r " IOMUXC_(?P<pin>GPIO_EMC_ \ d \ d)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
r " IOMUXC_(?P<pin>GPIO_EMC_ \ d \ d)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
@ -30,387 +26,197 @@ regexes = [
r " IOMUXC_(?P<pin>GPIO_SNVS_ \ d \ d_DIG)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
r " IOMUXC_(?P<pin>GPIO_SNVS_ \ d \ d_DIG)_(?P<function> \ w+) (?P<muxRegister> \ w+), (?P<muxMode> \ w+), (?P<inputRegister> \ w+), (?P<inputDaisy> \ w+), (?P<configRegister> \ w+) " ,
]
]
SUPPORTED_AF_FNS = { " GPIO " , " USDHC " , " FLEXPWM " , " TMR " }
def parse_pad ( pad_str ) :
""" Parses a string and returns a (port, gpio_bit) tuple. """
if len ( pad_str ) < 4 :
class MimxrtPin ( boardgen . Pin ) :
raise ValueError ( " Expecting pad name to be at least 4 characters " )
def __init__ ( self , cpu_pin_name ) :
if pad_str [ : 4 ] != " GPIO " :
super ( ) . __init__ ( cpu_pin_name )
raise ValueError ( " Expecting pad name to start with GPIO " )
return pad_str
self . _afs = [ ]
self . _adc_fns = [ ]
def af_supported ( af_str ) :
# Called for each AF defined in the csv file for this pin.
for supported_af in SUPPORTED_AFS :
def add_af ( self , af_idx , af_name , af ) :
if af_str . startswith ( supported_af ) :
# mimxrt-specific: Any pin in the af.csv is implicitly part of the board
return True
# pins.csv and will therefore be in the Pin.cpu dict. This is
else :
# equivalent to adding `,CPUNAME` to the board.csv for every pin in the
return False
# af.csv.
self . _available = True
class Pin ( object ) :
if af_name == " ALT5 " :
""" Holds the information associated with a pin. """
m = re . match ( " GPIO([0-9]+)_IO([0-9]+) " , af )
self . _port = int ( m . group ( 1 ) )
def __init__ ( self , pad , gpio , pin , idx = 0 ) :
self . _pin = int ( m . group ( 2 ) )
self . idx = idx
self . name = pad
if af_name . startswith ( " ALT " ) :
self . pad = pad
instance = af . split ( " _ " ) [ 0 ]
self . gpio = gpio
fn = re . match ( " ^([A-Z][A-Z0-9]+[A-Z])[0-9]*$ " , instance ) . group ( 1 )
self . pin = pin
if fn not in SUPPORTED_AF_FNS :
self . alt_fn = [ ]
return
self . adc_fns = [ ]
iomux_config = self . _generator . _iomux_pin_config [ self . name ( ) ]
self . board_pin = False
input_reg = iomux_config [ af_idx ] [ " inputRegister " ] . strip ( " U " )
input_daisy = int ( iomux_config [ af_idx ] [ " inputDaisy " ] . strip ( " U " ) , 16 )
def set_is_board_pin ( self ) :
self . _afs . append ( ( af_idx , input_reg , input_daisy , instance , fn , af ) )
self . board_pin = True
elif af_name == " ADC " :
def is_board_pin ( self ) :
adc_regex = r " ADC(?P<instance> \ d*)_IN(?P<channel> \ d*) "
return self . board_pin
lpadc_regex = r " ADC(?P<instance> \ d*)_CH(?P<channel> \ d*) " # LPADC for MIMXRT11xx chips
def parse_adc ( self , adc_str ) :
matches = re . finditer ( adc_regex , af , re . MULTILINE )
adc_regex = r " ADC(?P<instance> \ d*)_IN(?P<channel> \ d*) "
for match in matches :
lpadc_regex = r " ADC(?P<instance> \ d*)_CH(?P<channel> \ d*) " # LPADC for MIMXRT11xx chips
self . _adc_fns . append (
( int ( match . group ( " instance " ) ) , int ( match . group ( " channel " ) ) , " ADC " )
matches = re . finditer ( adc_regex , adc_str , re . MULTILINE )
for match in matches :
self . adc_fns . append (
AdcFunction ( instance = match . group ( " instance " ) , channel = match . group ( " channel " ) )
)
matches = re . finditer ( lpadc_regex , adc_str , re . MULTILINE )
for match in matches :
self . adc_fns . append (
AdcFunction (
peripheral = " LPADC " ,
instance = match . group ( " instance " ) ,
channel = match . group ( " channel " ) ,
)
)
)
def parse_af ( self , af_idx , af_strs_in ) :
matches = re . finditer ( lpadc_regex , af , re . MULTILINE )
pass
for match in matches :
self . _adc_fns . append (
def add_af ( self , af ) :
( int ( match . group ( " instance " ) ) , int ( match . group ( " channel " ) ) , " LPADC " )
self . alt_fn . append ( af )
)
def print_pin_af ( self , out_source ) :
# Use the PIN() macro defined in samd_prefix.c for defining the pin
if self . alt_fn :
# objects.
print (
def definition ( self ) :
" static const machine_pin_af_obj_t pin_ {0} _af[ {1} ] = {{ " . format (
if " _LPSR_ " in self . name ( ) :
self . name , len ( self . alt_fn )
macro = " PIN_LPSR "
) ,
elif (
file = out_source ,
" _SNVS_ " in self . name ( )
)
or self . name ( ) . startswith ( " PMIC_ " )
for af in self . alt_fn :
or self . name ( ) . startswith ( " WAKEUP " )
af . print ( out_source )
) :
print ( " }; " , file = out_source )
macro = " PIN_SNVS "
else :
else :
raise ValueError ( " Pin ' {} ' has no alternative functions " . format ( self . name ) )
macro = " PIN "
# PIN(_name, _gpio, _pin, _af_list, _adc_list_len, _adc_list)
return " {:s} ( {:s} , GPIO {:d} , {:d} , pin_ {:s} _af, {:d} , {:s} ) " . format (
macro ,
self . name ( ) ,
self . _port ,
self . _pin ,
self . name ( ) ,
len ( self . _adc_fns ) ,
" pin_ {:s} _adc " . format ( self . name ( ) ) if self . _adc_fns else " NULL " ,
)
def print_pin_adc ( self , out_source ) :
# This will be called at the start of the output (after the prefix) for
if self . adc_fns :
# each pin. Use it to emit the af and adc objects.
def print_source ( self , out_source ) :
print (
" static const machine_pin_af_obj_t pin_ {:s} _af[] = {{ " . format ( self . name ( ) ) ,
file = out_source ,
)
for af_idx , input_reg , input_daisy , instance , _fn , af in self . _afs :
print (
print (
" static const machine_pin_adc_obj_t pin_ {0} _adc[ {1} ] = {{ " . format (
" PIN_AF( {:s} , PIN_AF_MODE_ALT {:d} , {:d} , {:s} , {:s} , {:s} ), " . format (
self . name , len ( self . adc_fns )
af , af_idx , input_daisy , instance , input_reg , " 0x10B0U "
) ,
) ,
file = out_source ,
file = out_source ,
)
)
for adc_fn in self . adc_fns :
print ( " }; " , file = out_source )
adc_fn . print ( out_source )
print ( file = out_source )
print ( " }; " , file = out_source )
def print ( self , out_source ) :
if self . alt_fn :
self . print_pin_af ( out_source )
self . print_pin_adc ( out_source )
options = {
" GPIO_LPSR_00 " : " PIN_LPSR " ,
" GPIO_LPSR_01 " : " PIN_LPSR " ,
" GPIO_LPSR_02 " : " PIN_LPSR " ,
" GPIO_LPSR_03 " : " PIN_LPSR " ,
" GPIO_LPSR_04 " : " PIN_LPSR " ,
" GPIO_LPSR_05 " : " PIN_LPSR " ,
" GPIO_LPSR_06 " : " PIN_LPSR " ,
" GPIO_LPSR_07 " : " PIN_LPSR " ,
" GPIO_LPSR_08 " : " PIN_LPSR " ,
" GPIO_LPSR_09 " : " PIN_LPSR " ,
" GPIO_LPSR_10 " : " PIN_LPSR " ,
" GPIO_LPSR_11 " : " PIN_LPSR " ,
" GPIO_LPSR_12 " : " PIN_LPSR " ,
" GPIO_LPSR_13 " : " PIN_LPSR " ,
" GPIO_LPSR_14 " : " PIN_LPSR " ,
" GPIO_LPSR_15 " : " PIN_LPSR " ,
" GPIO_SNVS_00_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_01_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_02_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_03_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_04_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_05_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_06_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_07_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_08_DIG " : " PIN_SNVS " ,
" GPIO_SNVS_09_DIG " : " PIN_SNVS " ,
" WAKEUP " : " PIN_SNVS " ,
" WAKEUP_DIG " : " PIN_SNVS " ,
" PMIC_ON_REQ " : " PIN_SNVS " ,
" PMIC_ON_REQ_DIG " : " PIN_SNVS " ,
" PMIC_STBY_REQ " : " PIN_SNVS " ,
" PMIC_STBY_REQ_DIG " : " PIN_SNVS " ,
}
if self . _adc_fns :
print (
print (
" const machine_pin_obj_t pin_ {0} = {1} ( {0} , {2} , {3} , pin_ {0} _af, {4} , {5} ); \n " . format (
" static const machine_pin_adc_obj_t pin_ {:s} _adc[] = {{ " . format ( self . name ( ) ) ,
self . name ,
options . get ( self . name , " PIN " ) ,
self . gpio ,
int ( self . pin ) ,
len ( self . adc_fns ) ,
" pin_ {} _adc " . format ( self . name ) if self . adc_fns else " NULL " ,
) ,
file = out_source ,
file = out_source ,
)
)
else :
for instance , channel , peripheral in self . _adc_fns :
raise ValueError ( " Pin ' {} ' has no alternative functions " . format ( self . name ) )
print (
" PIN_ADC( {:s} {:d} , {:d} ), " . format ( peripheral , instance , channel ) ,
def print_header ( self , out_header ) :
file = out_source ,
pass
)
print ( " }; " , file = out_source )
class AdcFunction ( object ) :
""" Holds the information associated with a pins ADC function. """
def __init__ ( self , instance , channel , peripheral = " ADC " ) :
self . peripheral = peripheral
self . instance = instance
self . channel = channel
def print ( self , out_source ) :
""" Prints the C representation of this AF. """
print ( f " PIN_ADC( { self . peripheral } { self . instance } , { self . channel } ), " , file = out_source )
# mimxrt cpu names must be "GPIO_<funcs>_<num>", with zero-prefixed two-digit <num>.
@staticmethod
def validate_cpu_pin_name ( cpu_pin_name ) :
boardgen . Pin . validate_cpu_pin_name ( cpu_pin_name )
class AlternateFunction ( object ) :
if not re . match (
""" Holds the information associated with a pins alternate function. """
" ^((GPIO_((SNVS|EMC|LPSR|DISP)_)?([AS]D_)?(B[012]_)?[0-9][0-9])|WAKEUP|PMIC_(ON|STBY)_REQ)(_DIG)?$ " ,
cpu_pin_name ,
) :
raise boardgen . PinGeneratorError ( " Invalid cpu pin name ' {} ' " . format ( cpu_pin_name ) )
def __init__ ( self , idx , input_reg , input_daisy , af_str ) :
self . idx = idx
self . af_str = af_str
self . input_reg = input_reg
self . input_daisy = input_daisy
self . instance = self . af_str . split ( " _ " ) [ 0 ]
def print ( self , out_source ) :
class MimxrtPinGenerator ( boardgen . PinGenerator ) :
""" Prints the C representation of this AF. """
def __init__ ( self ) :
print (
# Use custom pin type above, and also enable the --af-csv argument so
" PIN_AF( {0} , PIN_AF_MODE_ALT {1} , {2} , {3} , {4} , {5} ), " . format (
# that add_af gets called on each pin.
self . af_str , self . idx , self . input_daisy , self . instance , self . input_reg , " 0x10B0U "
super ( ) . __init__ (
) ,
pin_type = MimxrtPin ,
file = out_sourc e,
enable_af = True ,
)
)
self . _iomux_pin_config = { }
# Load the iomux configuration from fsl_iomuxc.h.
class NamedPin ( object ) :
def load_iomux_header ( self , iomux_filename ) :
def __init__ ( self , name , pad , idx ) :
self . name = name
self . pad = pad
self . idx = idx
class Pins ( object ) :
def __init__ ( self ) :
self . cpu_pins = [ ]
self . board_pins = [ ]
def find_pin_by_num ( self , pin_num ) :
for pin in self . cpu_pins :
if pin . pin_num == pin_num :
return pin
def find_pin_by_name ( self , pad ) :
for pin in self . cpu_pins :
if pin . pad == pad :
return pin
def parse_board_file ( self , filename ) :
with open ( filename , " r " ) as csvfile :
rows = csv . reader ( csvfile )
for row in rows :
if len ( row ) == 0 or row [ 0 ] . startswith ( " # " ) :
# Skip empty lines, and lines starting with "#"
continue
if len ( row ) != 2 :
raise ValueError ( " Expecting two entries in a row " )
pin = self . find_pin_by_name ( row [ 1 ] )
if pin and row [ 0 ] : # Only add board pins that have a name
self . board_pins . append ( NamedPin ( row [ 0 ] , pin . pad , pin . idx ) )
def parse_af_file ( self , filename , iomux_filename ) :
iomux_pin_config = dict ( )
with open ( iomux_filename , " r " ) as ipt :
with open ( iomux_filename , " r " ) as ipt :
input_str = ipt . read ( )
input_str = ipt . read ( )
for regex in regexes :
for regex in IOMUX_REGEXS :
matches = re . finditer ( regex , input_str , re . MULTILINE )
matches = re . finditer ( regex , input_str , re . MULTILINE )
for match in matches :
for match in matches :
if match . group ( " pin " ) not in iomux_pin_config :
if match . group ( " pin " ) not in self . _iomux_pin_config :
iomux_pin_config [ match . group ( " pin " ) ] = {
self . _iomux_pin_config [ match . group ( " pin " ) ] = {
int ( ( match . groupdict ( ) [ " muxMode " ] . strip ( " U " ) ) , 16 ) : match . groupdict ( )
int ( ( match . groupdict ( ) [ " muxMode " ] . strip ( " U " ) ) , 16 ) : match . groupdict ( )
}
}
else :
else :
iomux_pin_config [ match . group ( " pin " ) ] [
self . _iomux_pin_config [ match . group ( " pin " ) ] [
int ( ( match . groupdict ( ) [ " muxMode " ] . strip ( " U " ) ) , 16 )
int ( ( match . groupdict ( ) [ " muxMode " ] . strip ( " U " ) ) , 16 )
] = match . groupdict ( )
] = match . groupdict ( )
with open ( filename , " r " ) as csvfile :
# Also load the iomux header.
rows = csv . reader ( csvfile )
def load_inputs ( self , out_source ) :
header = next ( rows )
if self . args . iomux_header :
# Extract indexes from header row
print ( " // --iomux-header {:s} " . format ( self . args . iomux_header ) , file = out_source )
pad_col = header . index ( " Pad " )
self . load_iomux_header ( self . args . iomux_header )
adc_col = header . index ( " ADC " )
#
super ( ) . load_inputs ( out_source )
for idx , row in enumerate ( rows ) :
pad = row [ pad_col ]
# Provide a macro for each supported (pin,af) that can be used to
gpio , pin = row [ 6 ] . split ( " _ " )
# initialise a struct containing a machine_pin_obj_t* and the
pin_number = pin . lstrip ( " IO " )
# corresponding af for that pin. e.g. A mimxrt_sdcard_pin_t instance can
pin = Pin ( pad , gpio , pin_number , idx = idx )
# be initialised with GPIO_SD_B0_00_USDHC1_CMD which tells it how to get
# the CMD pin of the USDHC1 function on the GPIO_SD_B0_00 pin.
# Parse alternate functions
def print_module_instances ( self , out_header ) :
af_idx = 0
print ( file = out_header )
for af_idx , af in enumerate ( row [ ( pad_col + 1 ) : adc_col ] ) :
for match_fn in ( " USDHC " , " FLEXPWM " , " TMR " ) :
if af and af_supported ( af ) :
module_instances = defaultdict ( list )
pin . add_af (
for pin in self . available_pins ( ) :
AlternateFunction (
for i , ( _af_idx , _input_reg , _input_daisy , instance , fn , af ) in enumerate (
af_idx ,
pin . _afs
iomux_pin_config [ pin . name ] [ af_idx ] [ " inputRegister " ] . strip ( " U " ) ,
) :
int (
if fn == match_fn :
iomux_pin_config [ pin . name ] [ af_idx ] [ " inputDaisy " ] . strip ( " U " ) , 16
module_instances [ instance ] . append (
) ,
" #define {:s} _ {:s} pin_ {:s} , {:d} " . format (
af ,
pin . name ( ) , af , pin . name ( ) , i
)
)
)
)
for k , v in module_instances . items ( ) :
print ( " // {:s} " . format ( k ) , file = out_header )
print ( " #define {:s} _AVAIL (1) " . format ( k ) , file = out_header )
if match_fn == " FLEXPWM " :
print ( " #define {:s} {:s} " . format ( k , k [ - 4 : ] ) , file = out_header )
for i in v :
print ( i , file = out_header )
# Override to also print the module instances.
def print_header ( self , out_header ) :
super ( ) . print_header ( out_header )
self . print_module_instances ( out_header )
pin . parse_adc ( row [ adc_col ] )
# Override the default implementation just to change the default arguments
# (extra header row, skip first column).
self . cpu_pins . append ( pin )
def parse_af_csv ( self , filename ) :
return super ( ) . parse_af_csv ( filename , header_rows = 1 , pin_col = 0 , af_col = 1 )
@staticmethod
def print_named ( label , pins , out_source ) :
print ( " " , file = out_source )
print (
" STATIC const mp_rom_map_elem_t pin_ {:s} _pins_locals_dict_table[] = {{ " . format ( label ) ,
file = out_source ,
)
for pin in pins :
(
print (
" {{ MP_ROM_QSTR(MP_QSTR_ {} ), MP_ROM_PTR(&pin_ {} ) }}, " . format (
pin . name , pin . pad
) ,
file = out_source ,
) ,
)
print ( " }; " , file = out_source )
print (
" MP_DEFINE_CONST_DICT(machine_pin_ {:s} _pins_locals_dict, pin_ {:s} _pins_locals_dict_table); " . format (
label , label
) ,
file = out_source ,
)
def print ( self , out_source ) :
# Print Pin Object declarations
for pin in self . cpu_pins :
pin . print ( out_source )
print ( " " , file = out_source )
print ( " const machine_pin_obj_t* machine_pin_board_pins [] = { " , file = out_source )
for pin in self . board_pins :
print ( " &pin_ {} , " . format ( pin . pad ) , file = out_source )
print ( " }; " , file = out_source )
print (
" const uint32_t num_board_pins = {:d} ; " . format ( len ( self . board_pins ) ) , file = out_source
)
# Print Pin mapping dictionaries
self . print_named ( " cpu " , self . cpu_pins , out_source )
self . print_named ( " board " , self . board_pins , out_source )
print ( " " , file = out_source )
def print_header ( self , out_header ) :
# We need to know the mcu to emit the correct AF list.
for pin in self . cpu_pins :
def extra_args ( self , parser ) :
print ( " extern const machine_pin_obj_t pin_ {} ; " . format ( pin . name ) , file = out_header )
parser . add_argument ( " --iomux-header " )
print ( " extern const machine_pin_obj_t* machine_pin_board_pins[]; " , file = out_header )
print ( " extern const uint32_t num_board_pins; " , file = out_header )
print ( " extern const mp_obj_dict_t machine_pin_cpu_pins_locals_dict; " , file = out_header )
print ( " extern const mp_obj_dict_t machine_pin_board_pins_locals_dict; " , file = out_header )
print ( " " , file = out_header )
print ( " // Defines " , file = out_header )
module_instance_factory ( self . cpu_pins , out_header , " USDHC " )
module_instance_factory ( self . cpu_pins , out_header , " FLEXPWM " )
module_instance_factory ( self . cpu_pins , out_header , " TMR " )
def module_instance_factory ( pins , out_header , name ) :
module_pin = filter ( lambda p : any ( [ af for af in p . alt_fn if name in af . af_str ] ) , pins )
module_instances = dict ( )
for pin in module_pin :
for idx , alt_fn in enumerate ( pin . alt_fn ) :
if name in alt_fn . instance :
format_string = " #define {0} _ {1} &pin_ {0} , {2} "
if alt_fn . instance not in module_instances :
module_instances [ alt_fn . instance ] = [
format_string . format ( pin . name , alt_fn . af_str , idx )
]
else :
module_instances [ alt_fn . instance ] . append (
format_string . format ( pin . name , alt_fn . af_str , idx )
)
for k , v in module_instances . items ( ) :
print ( f " // { k } " , file = out_header )
print ( f " #define { k } _AVAIL (1) " , file = out_header )
if name == " FLEXPWM " :
print ( f " #define { k } { k [ - 4 : ] } " , file = out_header )
for i in v :
print ( i , file = out_header )
def main ( ) :
parser = argparse . ArgumentParser ( description = " Generate board specific pin file " )
parser . add_argument ( " --board-csv " )
parser . add_argument ( " --af-csv " )
parser . add_argument ( " --prefix " )
parser . add_argument ( " --iomux-header " )
parser . add_argument ( " --output-source " )
parser . add_argument ( " --output-header " )
args = parser . parse_args ( )
pins = Pins ( )
with open ( args . output_source , " w " ) as out_source :
if args . af_csv :
print ( " // --af {:s} " . format ( args . af_csv ) , file = out_source )
pins . parse_af_file ( args . af_csv , args . iomux_header )
if args . board_csv :
print ( " // --board {:s} " . format ( args . board_csv ) , file = out_source )
pins . parse_board_file ( args . board_csv )
if args . output_header :
print ( " // --hdr {:s} " . format ( args . output_header ) , file = out_source )
if args . prefix :
print ( " // --prefix {:s} " . format ( args . prefix ) , file = out_source )
with open ( args . prefix , " r " ) as prefix_file :
print ( prefix_file . read ( ) , file = out_source )
pins . print ( out_source )
with open ( args . output_header , " w " ) as out_header :
pins . print_header ( out_header )
if __name__ == " __main__ " :
if __name__ == " __main__ " :
main ( )
MimxrtPinGenerator ( ) . main ( )