/hal_nxp-3.5.0/mcux/mcux-sdk/components/video/ |
D | fsl_video_common.c | 266 status_t VIDEO_STACK_Init(video_stack_t *stack, void **buf, uint32_t size) in VIDEO_STACK_Init() argument 268 stack->buf = buf; in VIDEO_STACK_Init() 269 stack->maxCount = size; in VIDEO_STACK_Init() 270 stack->top = 0U; in VIDEO_STACK_Init() 275 status_t VIDEO_STACK_Pop(video_stack_t *stack, void **item) in VIDEO_STACK_Pop() argument 279 if (stack->top > 0U) in VIDEO_STACK_Pop() 281 *item = stack->buf[--stack->top]; in VIDEO_STACK_Pop() 293 status_t VIDEO_STACK_Push(video_stack_t *stack, void *item) in VIDEO_STACK_Push() argument 297 if (stack->top < (stack->maxCount)) in VIDEO_STACK_Push() 299 stack->buf[stack->top++] = item; in VIDEO_STACK_Push()
|
D | fsl_video_common.h | 314 status_t VIDEO_STACK_Init(video_stack_t *stack, void **buf, uint32_t size); 324 status_t VIDEO_STACK_Pop(video_stack_t *stack, void **item); 334 status_t VIDEO_STACK_Push(video_stack_t *stack, void *item); 342 static inline uint32_t VIDEO_STACK_GetCount(video_stack_t *stack) in VIDEO_STACK_GetCount() argument 344 return stack->top; in VIDEO_STACK_GetCount() 353 static inline uint32_t VIDEO_STACK_GetMaxCount(video_stack_t *stack) in VIDEO_STACK_GetMaxCount() argument 355 return stack->maxCount; in VIDEO_STACK_GetMaxCount()
|
/hal_nxp-3.5.0/mcux/middleware/mcux-sdk-middleware-usb/ |
D | ChangeLogKSDK.txt | 4 @section USB USB stack for MCUXpresso SDK 5 The current version of USB stack is 2.8.4. 13 - Enable ROOT2 macro in USB device stack. 37 - Fix the USB device stack vulnerability issues. 53 - Add PPS message to usb pd stack. 62 - Except rule 17.2 in host hub and otg stack. 73 - Integrated sdk components (OSA, Timer, GPIO and serial_manager) to USB stack and demos. 77 - Add one "enumeration fail" callback event to host stack. 85 - Added enumeration fail callback to host stack when the attached device's enumeration failed. 114 - Enabled USB 3.0 support on device stack. [all …]
|
D | README.md | 1 # NXP Middleware USB stack 2 The USB stack provides USB device and USB host APIs that are targeted to support the application ba… 3 ## USB stack license 17 This subfolder includes the definitions and structures for the USB stack. The miscellaneous content… 84 Some documents are provided to introduce more details of the USB stack or guide users to implement …
|
D | SW-Content-Register.txt | 6 Description: Description: NXP USB stack. This is a version of the USB stack that has been integrate…
|
/hal_nxp-3.5.0/mcux/mcux-sdk/components/srtm/port/ |
D | srtm_mutex_freertos.c | 30 srtm_mutex_t SRTM_Mutex_Create(srtm_mutex_buf_t *stack) in SRTM_Mutex_Create() argument 32 return xSemaphoreCreateMutexStatic(stack); in SRTM_Mutex_Create()
|
D | srtm_sem_freertos.c | 31 srtm_sem_t SRTM_Sem_Create(uint32_t maxCount, uint32_t initCount, srtm_sem_buf_t *stack) in SRTM_Sem_Create() argument 33 return xSemaphoreCreateCountingStatic(maxCount, initCount, stack); in SRTM_Sem_Create()
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1176/ |
D | all_lib_device.cmake | 1174 # # description: edgefast_bluetooth bt_ble host stack 1183 # # description: edgefast_bluetooth configuration for bt_ble Host stack 1186 # # description: edgefast_bluetooth extension for bt_ble Host stack 1189 # # description: edgefast_bluetooth bt_ble Host stack(including BR and BLE) 1192 # # description: edgefast_bluetooth bt_ble Host stack(including BLE only) 1195 # # description: edgefast_bluetooth bt_ble Host stack(including BR only) 1228 # # description: edgefast_bluetooth PAL platform for bt_ble Host stack 1231 # # description: edgefast_bluetooth host_msd_fatfs for bt_ble Host stack 1234 # # description: edgefast_bluetooth db_gen for bt_ble Host stack 1264 # # description: btble libraries for bt_ble Host stack [all …]
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1042/ |
D | all_lib_device.cmake | 880 # # description: edgefast_bluetooth bt_ble host stack 889 # # description: edgefast_bluetooth configuration for bt_ble Host stack 892 # # description: edgefast_bluetooth extension for bt_ble Host stack 895 # # description: edgefast_bluetooth bt_ble Host stack(including BR and BLE) 898 # # description: edgefast_bluetooth bt_ble Host stack(including BLE only) 901 # # description: edgefast_bluetooth bt_ble Host stack(including BR only) 934 # # description: edgefast_bluetooth PAL platform for bt_ble Host stack 937 # # description: edgefast_bluetooth host_msd_fatfs for bt_ble Host stack 940 # # description: edgefast_bluetooth db_gen for bt_ble Host stack 970 # # description: btble libraries for bt_ble Host stack [all …]
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC5512/gcc/ |
D | LPC5512_ram.ld | 185 .stack : 192 /* Initializes stack on the end of block */ 199 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC5504CPXXXX/gcc/ |
D | LPC5504CPXXXX_ram.ld | 183 .stack : 190 /* Initializes stack on the end of block */ 197 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC55S04/gcc/ |
D | LPC55S04_ram.ld | 185 .stack : 192 /* Initializes stack on the end of block */ 199 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC51U68/gcc/ |
D | LPC51U68_ram.ld | 185 .stack : 191 /* Initializes stack on the end of block */ 198 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC5502CPXXXX/gcc/ |
D | LPC5502CPXXXX_ram.ld | 183 .stack : 190 /* Initializes stack on the end of block */ 197 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC5504/gcc/ |
D | LPC5504_ram.ld | 185 .stack : 192 /* Initializes stack on the end of block */ 199 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC54113/gcc/ |
D | LPC54113J128_ram.ld | 184 .stack : 190 /* Initializes stack on the end of block */ 197 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
D | LPC54113J256_ram.ld | 185 .stack : 191 /* Initializes stack on the end of block */ 198 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC54114/gcc/ |
D | LPC54114J256_cm4_ram.ld | 184 .stack : 190 /* Initializes stack on the end of block */ 197 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC804/gcc/ |
D | LPC804_ram.ld | 188 .stack : 194 /* Initializes stack on the end of block */ 201 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC811/gcc/ |
D | LPC811_ram.ld | 183 .stack : 189 /* Initializes stack on the end of block */ 196 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC5502/gcc/ |
D | LPC5502_ram.ld | 185 .stack : 192 /* Initializes stack on the end of block */ 199 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC802/gcc/ |
D | LPC802_ram.ld | 188 .stack : 194 /* Initializes stack on the end of block */ 201 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC812/gcc/ |
D | LPC812_ram.ld | 187 .stack : 193 /* Initializes stack on the end of block */ 200 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC845/gcc/ |
D | LPC845_ram.ld | 187 .stack : 193 /* Initializes stack on the end of block */ 200 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/LPC832/gcc/ |
D | LPC832_ram.ld | 183 .stack : 189 /* Initializes stack on the end of block */ 196 ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap")
|