/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** USBX Component */ /** */ /** Utility */ /** */ /**************************************************************************/ /**************************************************************************/ /* Include necessary system files. */ #define UX_SOURCE_CODE #include "ux_api.h" /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _ux_utility_descriptor_pack PORTABLE C */ /* 6.3.0 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function will pack an application structure into a USB */ /* descriptor. */ /* */ /* INPUT */ /* */ /* descriptor Pointer to the unpacked */ /* descriptor */ /* descriptor_structure Components of the descriptor */ /* descriptor_entries Number of entries in the */ /* descriptor */ /* raw_descriptor Pointer to packed descriptor */ /* */ /* OUTPUT */ /* */ /* None */ /* */ /* CALLS */ /* */ /* _ux_utility_long_put Put 32-bit value */ /* _ux_utility_short_put Put 16-bit value */ /* */ /* CALLED BY */ /* */ /* USBX Components */ /* */ /**************************************************************************/ VOID _ux_utility_descriptor_pack(UCHAR * descriptor, UCHAR * descriptor_structure, UINT descriptor_entries, UCHAR * raw_descriptor) { /* Loop on all the entries in this descriptor. */ while(descriptor_entries--) { /* Get the length of that component. */ switch(*descriptor_structure++) { /* Check the size then build the component from the source and insert it into the target descriptor. */ case 4: /* Increase address so it's aligned. */ while((ALIGN_TYPE)descriptor & 3u) descriptor++; /* Put the DW. */ _ux_utility_long_put(raw_descriptor, *((ULONG *) descriptor)); raw_descriptor += 4; descriptor += 4; break; case 2: /* Increase address so it's aligned. */ while((ALIGN_TYPE)descriptor & 1u) descriptor++; /* Put the Word. */ _ux_utility_short_put(raw_descriptor, (USHORT)*((USHORT *) descriptor)); raw_descriptor += 2; descriptor += 2; break; default: /* Put the byte. */ *raw_descriptor = (UCHAR) *((UCHAR *) descriptor); raw_descriptor++; descriptor++; } } /* Return to caller. */ return; }