Correct endianness handling for big-endian hosts in SETUP packets#3595
Closed
dangfan wants to merge 1 commit into
Closed
Correct endianness handling for big-endian hosts in SETUP packets#3595dangfan wants to merge 1 commit into
dangfan wants to merge 1 commit into
Conversation
…P packets USB wire format is little-endian, but TinyUSB assumed host byte order == little-endian in two places: 1. dcd_event_setup_received() (dcd.h): after memcpy-ing the raw SETUP bytes into tusb_control_request_t, wValue/wIndex/wLength were left in wire byte order. Fix: apply tu_le16toh() on each field. On LE hosts this is a no-op. 2. Bit-field structs (tusb_types.h): GCC on big-endian ARM allocates bit fields from the MSB downward, opposite to the USB spec's LSB-first numbering. Fix: reverse the field declaration order under TU_BIG_ENDIAN for tusb_desc_endpoint_t.bmAttributes and tusb_control_request_t.bmRequestType_bit. Tested on CIU98320B (big-endian ARM, full-speed device) with HID keyboard demo: full enumeration and keystroke transmission verified.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
USB wire format is little-endian, but TinyUSB assumed host byte order == little-endian
in two places:
dcd_event_setup_received() (dcd.h): after memcpy-ing the raw SETUP bytes into
tusb_control_request_t, wValue/wIndex/wLength were left in wire byte order.
Fix: apply tu_le16toh() on each field. On LE hosts this is a no-op.
Bit-field structs (tusb_types.h): GCC on big-endian ARM allocates bit fields
from the MSB downward, opposite to the USB spec's LSB-first numbering.
Fix: reverse the field declaration order under TU_BIG_ENDIAN for
tusb_desc_endpoint_t.bmAttributes and tusb_control_request_t.bmRequestType_bit.
Tested on HED CIU98320B (big-endian ARM, full-speed device) with HID keyboard demo:
full enumeration and keystroke transmission verified.