/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/esai/ |
D | fsl_esai.c | 50 esai_customer_protocol_t *protocol, 98 esai_customer_protocol_t *protocol, in ESAI_SetCustomerProtocol() argument 104 protocol->mode = kESAI_NetworkMode; in ESAI_SetCustomerProtocol() 105 protocol->dataAlign = false; in ESAI_SetCustomerProtocol() 106 protocol->fsEarly = false; in ESAI_SetCustomerProtocol() 107 protocol->shiftDirection = kESAI_ShifterMSB; in ESAI_SetCustomerProtocol() 108 protocol->fsOneBit = false; in ESAI_SetCustomerProtocol() 109 protocol->ifZeroPading = true; in ESAI_SetCustomerProtocol() 110 protocol->slotNum = 2; in ESAI_SetCustomerProtocol() 113 protocol->mode = kESAI_NetworkMode; in ESAI_SetCustomerProtocol() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/port/wm8962/ |
D | fsl_codec_wm8962_adapter.c | 33 #define HAL_WM8962_MAP_PROTOCOL(protocol) \ argument 34 ((protocol) == kCODEC_BusI2S ? \ 36 (protocol) == kCODEC_BusLeftJustified ? \ 38 (protocol) == kCODEC_BusRightJustified ? \ 40 (protocol) == kCODEC_BusPCMA ? kWM8962_BusPCMA : \ 41 … (protocol) == kCODEC_BusPCMB ? kWM8962_BusPCMB : kWM8962_BusI2S)
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/wm8524/ |
D | fsl_wm8524.c | 43 WM8524_ConfigFormat(handle, wm8524Config->protocol); in WM8524_Init() 58 void WM8524_ConfigFormat(wm8524_handle_t *handle, wm8524_protocol_t protocol) in WM8524_ConfigFormat() argument 65 if (protocol != kWM8524_ProtocolRightJustified) in WM8524_ConfigFormat() 67 wm8524Config->setProtocol((uint32_t)protocol); in WM8524_ConfigFormat()
|
D | fsl_wm8524.h | 53 wm8524_protocol_t protocol; /*!< Protocol of the codec */ member 83 void WM8524_ConfigFormat(wm8524_handle_t *handle, wm8524_protocol_t protocol);
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/port/da7212/ |
D | fsl_codec_da7212_adapter.c | 25 #define HAL_DA7212_MAP_PROTOCOL(protocol) \ argument 26 (protocol == kCODEC_BusI2S ? \ 28 protocol == kCODEC_BusLeftJustified ? \ 30 protocol == kCODEC_BusRightJustified ? kDA7212_BusRightJustified : \ 31 … protocol == kCODEC_BusPCMA ? kDA7212_BusDSPMode : kDA7212_BusI2S)
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/port/wm8904/ |
D | fsl_codec_wm8904_adapter.c | 31 #define HAL_WM8904_MAP_PROTOCOL(protocol) \ argument 32 ((protocol) == kCODEC_BusI2S ? \ 34 (protocol) == kCODEC_BusLeftJustified ? \ 36 (protocol) == kCODEC_BusRightJustified ? \ 38 (protocol) == kCODEC_BusPCMA ? kWM8904_ProtocolPCMA : \ 39 … (protocol) == kCODEC_BusPCMB ? kWM8904_ProtocolPCMB : kWM8904_ProtocolI2S)
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/port/wm8960/ |
D | fsl_codec_wm8960_adapter.c | 34 #define HAL_WM8960_MAP_PROTOCOL(protocol) \ argument 35 ((protocol) == kCODEC_BusI2S ? \ 37 (protocol) == kCODEC_BusLeftJustified ? \ 39 (protocol) == kCODEC_BusRightJustified ? \ 41 (protocol) == kCODEC_BusPCMA ? kWM8960_BusPCMA : \ 42 … (protocol) == kCODEC_BusPCMB ? kWM8960_BusPCMB : kWM8960_BusI2S)
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/wm8962/ |
D | fsl_wm8962.c | 404 status_t WM8962_SetProtocol(wm8962_handle_t *handle, wm8962_protocol_t protocol) in WM8962_SetProtocol() argument 408 if (protocol == kWM8962_BusPCMB) in WM8962_SetProtocol() 411 …WM8962_ModifyReg(handle, WM8962_IFACE0, WM8962_IFACE0_FORMAT_MASK, ((uint16_t)protocol | 0x10U)), … in WM8962_SetProtocol() 413 else if (protocol == kWM8962_BusPCMA) in WM8962_SetProtocol() 415 …_RET(WM8962_ModifyReg(handle, WM8962_IFACE0, WM8962_IFACE0_FORMAT_MASK, ((uint16_t)protocol - 1U)), in WM8962_SetProtocol() 420 …K_RET(WM8962_ModifyReg(handle, WM8962_IFACE0, WM8962_IFACE0_FORMAT_MASK, (uint16_t)protocol), ret); in WM8962_SetProtocol()
|
/hal_nxp-3.6.0/mcux/middleware/mcux-sdk-middleware-usb/output/source/device/class/ |
D | usb_device_hid.c | 561 … (class_handle_t)hidHandle, kUSB_DeviceHidEventGetProtocol, &hidHandle->protocol); in USB_DeviceHidEvent() 562 controlRequest->buffer = &hidHandle->protocol; in USB_DeviceHidEvent() 563 controlRequest->length = sizeof(hidHandle->protocol); in USB_DeviceHidEvent() 614 hidHandle->protocol = (uint8_t)((controlRequest->setup->wValue & 0x00FFU)); in USB_DeviceHidEvent() 618 … (class_handle_t)hidHandle, kUSB_DeviceHidEventSetProtocol, &hidHandle->protocol); in USB_DeviceHidEvent()
|
D | usb_device_hid.h | 102 uint8_t protocol; /*!< Current protocol */ member
|
/hal_nxp-3.6.0/mcux/middleware/mcux-sdk-middleware-usb/host/class/ |
D | usb_host_hid.h | 305 uint8_t *protocol, 325 uint8_t protocol,
|
D | usb_host_hid.c | 763 uint8_t *protocol, in USB_HostHidGetProtocol() argument 769 USB_HOST_HID_GET_PROTOCOL, 0, 0, 1, protocol, callbackFn, callbackParam); in USB_HostHidGetProtocol() 773 uint8_t protocol, in USB_HostHidSetProtocol() argument 779 USB_HOST_HID_SET_PROTOCOL, protocol, 0, 0, NULL, callbackFn, callbackParam); in USB_HostHidSetProtocol()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/wm8904/ |
D | fsl_wm8904.h | 267 wm8904_protocol_t protocol; /*!< Audio transfer protocol */ member 404 status_t WM8904_SetProtocol(wm8904_handle_t *handle, wm8904_protocol_t protocol);
|
D | fsl_wm8904.c | 366 result = WM8904_SetProtocol(handle, config->protocol); in WM8904_Init() 483 config->protocol = kWM8904_ProtocolI2S; in WM8904_GetDefaultConfig() 779 status_t WM8904_SetProtocol(wm8904_handle_t *handle, wm8904_protocol_t protocol) in WM8904_SetProtocol() argument 781 …eturn WM8904_ModifyRegister(handle, WM8904_AUDIO_IF_1, (0x0003U | (1U << 4U)), (uint16_t)protocol); in WM8904_SetProtocol()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/da7212/ |
D | fsl_dialog7212.c | 393 … (uint8_t)(DIALOG7212_DAI_EN_MASK | (uint8_t)(config->protocol)))) != kStatus_Success) in DA7212_Init() 483 status_t DA7212_SetProtocol(da7212_handle_t *handle, da7212_protocol_t protocol) in DA7212_SetProtocol() argument 485 …_WriteRegister(handle, DIALOG7212_DAI_CTRL, (uint8_t)(DIALOG7212_DAI_EN_MASK | (uint8_t)protocol)); in DA7212_SetProtocol()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/serial_manager/ |
D | fsl_component_serial_port_swo.h | 36 serial_port_swo_protocol_t protocol; /*!< SWO protocol */ member
|
D | fsl_component_serial_port_swo.c | 88 TPI->SPPR = (uint32_t)swoConfig->protocol; in Serial_SwoInit()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/sai/ |
D | fsl_sai.c | 437 if (config->protocol == kSAI_BusLeftJustified) in SAI_TxInit() 443 else if (config->protocol == kSAI_BusRightJustified) in SAI_TxInit() 449 else if (config->protocol == kSAI_BusI2S) in SAI_TxInit() 455 else if (config->protocol == kSAI_BusPCMA) in SAI_TxInit() 561 if (config->protocol == kSAI_BusLeftJustified) in SAI_RxInit() 567 else if (config->protocol == kSAI_BusRightJustified) in SAI_RxInit() 573 else if (config->protocol == kSAI_BusI2S) in SAI_RxInit() 579 else if (config->protocol == kSAI_BusPCMA) in SAI_RxInit() 719 config->protocol = kSAI_BusI2S; in SAI_TxGetDefaultConfig() 753 config->protocol = kSAI_BusI2S; in SAI_RxGetDefaultConfig() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/cs42448/ |
D | fsl_cs42448.c | 185 status_t CS42448_SetProtocol(cs42448_handle_t *handle, cs42448_bus_t protocol, uint32_t bitWidth) in CS42448_SetProtocol() argument 190 switch (protocol) in CS42448_SetProtocol()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/cs42888/ |
D | fsl_cs42888.c | 188 status_t CS42888_SetProtocol(cs42888_handle_t *handle, cs42888_bus_t protocol, uint32_t bitWidth) in CS42888_SetProtocol() argument 193 switch (protocol) in CS42888_SetProtocol()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/codec/tfa9xxx/ |
D | fsl_tfa9xxx.h | 90 tfa9xxx_protocol_t protocol; /*!< Audio transfer protocol */ member
|
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/LPC55S06/ |
D | all_lib_device.cmake | 605 # # description: A network protocol stack based on azure RTOS 608 # # description: A network protocol stack based on azure RTOS 653 # # description: A network protocol stack based on azure RTOS 656 # # description: A network protocol stack based on azure RTOS
|
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/LPC55S16/ |
D | all_lib_device.cmake | 626 # # description: A network protocol stack based on azure RTOS 629 # # description: A network protocol stack based on azure RTOS 674 # # description: A network protocol stack based on azure RTOS 677 # # description: A network protocol stack based on azure RTOS
|
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/LPC55S28/ |
D | all_lib_device.cmake | 608 # # description: A network protocol stack based on azure RTOS 611 # # description: A network protocol stack based on azure RTOS 656 # # description: A network protocol stack based on azure RTOS 659 # # description: A network protocol stack based on azure RTOS
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/rtt/ |
D | License.txt | 9 compatible with the RTT protocol and J-Link.
|