| /hal_nxp-latest/mcux/scripts/pinctrl/imx/ |
| D | imx_fixup_pinmux.py | 50 match = iomuxc_re.match(line) variable 51 if match: 52 mux_reg = int(match.group(2), 0) 53 mux = int(match.group(3), 0) 54 daisy_reg = int(match.group(4), 0) 55 daisy = int(match.group(5), 0) 56 cfg_reg = int(match.group(6), 0) 59 ground_truth[(mux_reg, mux)] = (match.group(1), daisy_reg, daisy, cfg_reg) 76 match = pinctrl_line1_re.match(line) variable 77 if match: [all …]
|
| D | imx_cfg_utils.py | 236 match = re.match(r'init_([\w_]+)', cfg_assign_xml.attrib['configuration_step']) 237 periph_name = match.group(1) 241 … match = re.match(re.escape(periph_name) + r'_(\w+)', cfg_assign_xml.attrib['register']) 242 reg_name = match.group(1) 243 match = re.match(r'SW_PAD_CTL_PAD_(\w+)', reg_name) 244 pad_name = match.group(1) 411 match = re.search(r'GPIO(\d+)', peripheral) 412 gpio_port = match.group(1) 420 match = re.match(r'init_([\w_]+)', assignment.attrib['configuration_step']) 421 periph_name = match.group(1) [all …]
|
| /hal_nxp-latest/mcux/mcux-sdk/drivers/ctimer/ |
| D | fsl_ctimer.h | 564 static inline void CTIMER_EnableResetMatchChannel(CTIMER_Type *base, ctimer_match_t match, bool ena… in CTIMER_EnableResetMatchChannel() argument 568 base->MCR |= (1UL << (CTIMER_MCR_MR0R_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableResetMatchChannel() 572 base->MCR &= ~(1UL << (CTIMER_MCR_MR0R_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableResetMatchChannel() 585 static inline void CTIMER_EnableStopMatchChannel(CTIMER_Type *base, ctimer_match_t match, bool enab… in CTIMER_EnableStopMatchChannel() argument 589 base->MCR |= (1UL << (CTIMER_MCR_MR0S_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableStopMatchChannel() 593 base->MCR &= ~(1UL << (CTIMER_MCR_MR0S_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableStopMatchChannel() 607 static inline void CTIMER_EnableMatchChannelReload(CTIMER_Type *base, ctimer_match_t match, bool en… in CTIMER_EnableMatchChannelReload() argument 611 base->MCR |= (1UL << (CTIMER_MCR_MR0RL_SHIFT + (uint32_t)match)); in CTIMER_EnableMatchChannelReload() 615 base->MCR &= ~(1UL << (CTIMER_MCR_MR0RL_SHIFT + (uint32_t)match)); in CTIMER_EnableMatchChannelReload() 670 static inline void CTIMER_SetShadowValue(CTIMER_Type *base, ctimer_match_t match, uint32_t matchval… in CTIMER_SetShadowValue() argument [all …]
|
| /hal_nxp-latest/mcux/scripts/pinctrl/lpc/ |
| D | lpc_cfg_utils.py | 62 match = pio_regex.match(reg) 63 if match and (field == func_name): 71 self._index = int(match.group(1)) 72 port = int(match.group(2)) 73 pin = int(match.group(3)) 82 port = int(match.group(1)) 83 pin = int(match.group(2)) 86 elif match and field == 'MODE': 96 elif match and field == 'ASW' and not imx_rt: 101 elif match and field == 'ASW0' and not imx_rt: [all …]
|
| /hal_nxp-latest/mcux/mcux-sdk/scripts/kconfig/ |
| D | kconfiglib.py | 1273 match = set_match(line) 1274 if match: 1275 name, val = match.groups() 1314 match = _conf_string_match(val) 1315 if not match: 1322 val = unescape(match.group(1)) 1325 match = unset_match(line) 1326 if not match: 1338 name = match.group(1) 1862 match = self._set_match(line) [all …]
|
| /hal_nxp-latest/mcux/scripts/pinctrl/kinetis/ |
| D | kinetis_cfg_utils.py | 56 match = re.match(r'PORT([A-Z])_PCR(\d+)', reg) 58 match = re.match(r'PORT(\d)_PCR(\d+)', reg) 59 if match and (assign.attrib.get('bit_field') == "MUX"): 63 if re.match(r'PT[A-Z]\d+', self._name) is None: 66 if re.match(r'PIO\d_\d+', self._name) is None: 69 if re.match(r'P\d_\d+', self._name) is None: 71 self._port = match.group(1) 72 self._pin = int(match.group(2))
|
| /hal_nxp-latest/mcux/scripts/pinctrl/ |
| D | gen_board_pinctrl.py | 98 match = re.search(r'data_version=([\d\.]+)', line) 99 if match: 100 data_version = float(match.group(1))
|
| D | gen_soc_headers.py | 98 match = re.search(r'data_version=([\d\.]+)', line) 99 if match: 100 data_version = float(match.group(1))
|
| /hal_nxp-latest/mcux/mcux-sdk/drivers/netc/ |
| D | fsl_netc_msg.c | 97 result->match = 1U; in EP_RxL2MFQueryEMTableEntry() 139 if (result[i].match == 1U) in EP_RxL2MFQueryAddEMTableEntry() 166 if (result[i].match == 1U) in EP_RxL2MFQueryAddEMTableEntry() 218 if (result[i].match == 0U) in EP_RxL2MFQueryDeleteEMTableEntry() 546 result->match = 1U; in EP_RxL2VFQueryEMTableEntry() 588 if (result[i].match == 1U) in EP_RxL2VFQueryAddEMTableEntry() 614 if (result[i].match == 1U) in EP_RxL2VFQueryAddEMTableEntry() 665 if (result[i].match == 0U) in EP_RxL2VFQueryDeleteEMTableEntry()
|
| D | fsl_netc_msg.h | 178 uint8_t match; /* If address matches to one entry */ member
|
| /hal_nxp-latest/mcux/mcux-sdk/cmake/ |
| D | mcux.cmake | 51 # The variable name match we just did included the '=' symbol. To just get the 52 # part on the RHS we use match group 1
|
| /hal_nxp-latest/mcux/mcux-sdk/drivers/flexcomm/usart/ |
| D | fsl_usart.h | 454 static inline void USART_EnableMatchAddress(USART_Type *base, bool match) in USART_EnableMatchAddress() argument 457 if (match) in USART_EnableMatchAddress()
|
| /hal_nxp-latest/mcux/mcux-sdk/drivers/xrdc2/ |
| D | fsl_xrdc2.c | 151 assignment->match = 0U; in XRDC2_GetDefaultMasterDomainAssignment() 172 ((uint32_t)assignment->match << XRDC2_MDAC_MDA_W0_MATCH_SHIFT)); in XRDC2_SetMasterDomainAssignment()
|
| D | fsl_xrdc2.h | 83 uint16_t match; /*!< Match used for descriptor hit. */ member
|
| /hal_nxp-latest/mcux/mcux-sdk/components/serial_manager/usb_cdc_adapter/inf/ |
| D | fsl_ucwxp.inf | 74 ; application program and the firmware on the microcontroller must match.
|
| /hal_nxp-latest/mcux/ |
| D | CMakeLists.txt | 9 # MCU_DEVICE_PATH: SOC name without core suffix. Must match the name of the
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC5502/gcc/ |
| D | LPC5502_ram.ld | 89 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC822/gcc/ |
| D | LPC822_ram.ld | 89 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC864/gcc/ |
| D | LPC864_ram.ld | 88 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC5512/gcc/ |
| D | LPC5512_ram.ld | 89 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC55S04/gcc/ |
| D | LPC55S04_ram.ld | 89 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC5504/gcc/ |
| D | LPC5504_ram.ld | 89 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC802/gcc/ |
| D | LPC802_ram.ld | 92 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC865/gcc/ |
| D | LPC865_ram.ld | 90 linker won't look for a file to match a
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC845/gcc/ |
| D | LPC845_ram.ld | 91 linker won't look for a file to match a
|