<feed xmlns='http://www.w3.org/2005/Atom'>
<title>tinyusb.git/examples/device/mtp/src/mtp_fs_example.c, branch claude/mtp-data-phase-fixes</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/tinyusb.git/atom/examples/device/mtp/src/mtp_fs_example.c?h=claude%2Fmtp-data-phase-fixes</id>
<link rel='self' href='http://cgit.235523.xyz/tinyusb.git/atom/examples/device/mtp/src/mtp_fs_example.c?h=claude%2Fmtp-data-phase-fixes'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/'/>
<updated>2026-08-17T05:11:53Z</updated>
<entry>
<title>examples/mtp: clamp SendObject writes to the declared object size</title>
<updated>2026-08-17T05:11:53Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2026-08-14T05:26:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=7530f13031c8e316131fe6272f7905db1245cfd9'/>
<id>urn:sha1:7530f13031c8e316131fe6272f7905db1245cfd9</id>
<content type='text'>
fs_send_object() copied every received payload to f-&gt;data using only
the running offset, so a host sending more data than its SendObjectInfo
declared wrote past the object and overflowed fs_buf. Clamp each copy to
what remains of f-&gt;size.
</content>
</entry>
<entry>
<title>class/mtp: correct data phase completion and transaction recovery</title>
<updated>2026-08-17T05:11:53Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2026-08-13T07:34:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=5a9803555f362a0efeeb549093a3338c5b151e9c'/>
<id>urn:sha1:5a9803555f362a0efeeb549093a3338c5b151e9c</id>
<content type='text'>
The data-out phase ended before its terminating ZLP and before the
application had seen the final payload, and several transaction states
had no way back to idle. Reworked as one state machine:

- Add MTP_PHASE_DATA_COMPLETE, entered once the data phase has fully
  finished - for an exact buffer-multiple data-out, only after the
  host's terminating ZLP - and deliver tud_mtp_data_complete_cb() from
  there. tud_mtp_response_send() now refuses while the phase is still
  MTP_PHASE_DATA: ep_out still owes the host a read at that point and
  re-arming it for a new command would race that read.

- Arm the terminating-ZLP read before handing the final payload to the
  application, as the IN path already does. The 0-length read passes a
  NULL buffer so the payload is untouched, and claiming ep_out first
  means a late tud_mtp_data_receive() fails its own claim instead of
  breaking the driver's next step.

- Honor the documented negative return of tud_mtp_data_xfer_cb() and
  tud_mtp_data_complete_cb() by entering MTP_PHASE_ERROR, which stalls
  both endpoints. This is the application's way out of a data phase now
  that a response cannot be sent from one. Their weak stubs return 0 so
  an application that does not implement them is unaffected.

- Take total_len from the container header the host sends on the first
  OUT packet. The application can only set it up front when it knows
  the size (SendObject); SendObjectInfo cannot, so total_len kept the
  12-byte header default and the phase ended on the first packet.

- Reject a runt or misdirected container in both the command and data
  phases: a short packet was matched against stale buffer contents, and
  the failed TU_VERIFY left ep_out neither armed nor stalled. The
  first data-out packet previously underflowed payload_bytes instead.

- Restore the previous phase when tud_mtp_data_send()/_receive() cannot
  claim their endpoint, so the application's fallback response is not
  refused by a phase the driver never actually entered.

- Re-arm ep_out after MTP_REQ_CANCEL of a data phase, and defer the
  new-command read when ep_out is still busy with the ZLP read of an
  abandoned transaction: usbd_edpt_xfer() asserts on a busy endpoint,
  so MTP_REQ_RESET could not recover.

The MTP example follows the same contract: a handler error raised mid
data phase (fs_send_object_info validates the received ObjectInfo, so
STORE_FULL and INVALID_PARENT_OBJECT can only be raised there) is kept
and answered from tud_mtp_data_complete_cb() once the phase completes.
</content>
</entry>
<entry>
<title>Add GetPartialObject to MTP example</title>
<updated>2026-05-13T20:27:57Z</updated>
<author>
<name>Wojciech Klimek</name>
<email>wjklimek1@gmail.com</email>
</author>
<published>2026-05-13T20:27:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=09f8208f5be1be4be5e2c0278960b202b7dc759d'/>
<id>urn:sha1:09f8208f5be1be4be5e2c0278960b202b7dc759d</id>
<content type='text'>
Added support for GetPartialObject for better compatibility with Linux file explorers.
</content>
</entry>
<entry>
<title>mtp: add sending mtp response if MTP_RESP_OPERATION_NOT_SUPPORTED</title>
<updated>2026-03-25T08:43:48Z</updated>
<author>
<name>stepan chepushtanov</name>
<email>s.chepushtanov@is.local</email>
</author>
<published>2026-03-05T06:44:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=9a03a16c8121301658c24a290c349598f8cf51d5'/>
<id>urn:sha1:9a03a16c8121301658c24a290c349598f8cf51d5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>example/mtp: fix root parent id</title>
<updated>2025-12-29T19:54:04Z</updated>
<author>
<name>HiFiPhile</name>
<email>admin@hifiphile.com</email>
</author>
<published>2025-12-29T19:54:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=237e9f21fd2f5211abd3784954b72fa900fff7ea'/>
<id>urn:sha1:237e9f21fd2f5211abd3784954b72fa900fff7ea</id>
<content type='text'>
Signed-off-by: HiFiPhile &lt;admin@hifiphile.com&gt;
</content>
</entry>
<entry>
<title>fix more alerts found by pvs-studio</title>
<updated>2025-11-07T16:50:16Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2025-11-07T07:04:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=652342b57b129a79e0df152377d18096e4a0fed5'/>
<id>urn:sha1:652342b57b129a79e0df152377d18096e4a0fed5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>added .clang-format</title>
<updated>2025-11-05T10:34:27Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2025-11-05T08:31:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=1f04fe7924e8777c1583323171c0e1cabcb29062'/>
<id>urn:sha1:1f04fe7924e8777c1583323171c0e1cabcb29062</id>
<content type='text'>
fix more alerts
disable IAR CStat since pvs-studio check is better integrated with clion
</content>
</entry>
<entry>
<title>fix typo</title>
<updated>2025-10-06T06:34:05Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2025-10-06T06:34:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=044512c4599339a57019def2d4587e9207a0649e'/>
<id>urn:sha1:044512c4599339a57019def2d4587e9207a0649e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix iar build</title>
<updated>2025-10-03T04:26:14Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2025-10-03T04:26:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=3b007249cfd9649db2ad28e9a285d7a8ace8854e'/>
<id>urn:sha1:3b007249cfd9649db2ad28e9a285d7a8ace8854e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix mtp serial</title>
<updated>2025-10-02T05:49:38Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2025-10-02T05:49:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=4a0613cbafd1109a8d656d8d379040dfc38efa60'/>
<id>urn:sha1:4a0613cbafd1109a8d656d8d379040dfc38efa60</id>
<content type='text'>
</content>
</entry>
</feed>
