Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 625) sorted by relevance

12345678910>>...25

/hal_nxp-latest/mcux/scripts/pinctrl/imx/
Dimx_fixup_pinmux.py50 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 …]
Dimx_cfg_utils.py236 match = re.match(r'init_([\w_]+)', cfg_assign_xml.attrib['configuration_step'])
237 periph_name = match.group(1)
241match = 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/
Dfsl_ctimer.h564 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/
Dlpc_cfg_utils.py62 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/
Dkconfiglib.py1273 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/
Dkinetis_cfg_utils.py56 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/
Dgen_board_pinctrl.py98 match = re.search(r'data_version=([\d\.]+)', line)
99 if match:
100 data_version = float(match.group(1))
Dgen_soc_headers.py98 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/
Dfsl_netc_msg.c97 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()
Dfsl_netc_msg.h178 uint8_t match; /* If address matches to one entry */ member
/hal_nxp-latest/mcux/mcux-sdk/cmake/
Dmcux.cmake51 # 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/
Dfsl_usart.h454 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/
Dfsl_xrdc2.c151 assignment->match = 0U; in XRDC2_GetDefaultMasterDomainAssignment()
172 ((uint32_t)assignment->match << XRDC2_MDAC_MDA_W0_MATCH_SHIFT)); in XRDC2_SetMasterDomainAssignment()
Dfsl_xrdc2.h83 uint16_t match; /*!< Match used for descriptor hit. */ member
/hal_nxp-latest/mcux/mcux-sdk/components/serial_manager/usb_cdc_adapter/inf/
Dfsl_ucwxp.inf74 ; application program and the firmware on the microcontroller must match.
/hal_nxp-latest/mcux/
DCMakeLists.txt9 # MCU_DEVICE_PATH: SOC name without core suffix. Must match the name of the
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC5502/gcc/
DLPC5502_ram.ld89 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC822/gcc/
DLPC822_ram.ld89 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC864/gcc/
DLPC864_ram.ld88 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC5512/gcc/
DLPC5512_ram.ld89 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC55S04/gcc/
DLPC55S04_ram.ld89 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC5504/gcc/
DLPC5504_ram.ld89 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC802/gcc/
DLPC802_ram.ld92 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC865/gcc/
DLPC865_ram.ld90 linker won't look for a file to match a
/hal_nxp-latest/mcux/mcux-sdk/devices/LPC845/gcc/
DLPC845_ram.ld91 linker won't look for a file to match a

12345678910>>...25