<feed xmlns='http://www.w3.org/2005/Atom'>
<title>tinyusb.git/examples/device/cdc_msc/src/usb_descriptors.c, branch 0.16.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/tinyusb.git/atom/examples/device/cdc_msc/src/usb_descriptors.c?h=0.16.0</id>
<link rel='self' href='http://cgit.235523.xyz/tinyusb.git/atom/examples/device/cdc_msc/src/usb_descriptors.c?h=0.16.0'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/'/>
<updated>2023-08-04T03:28:24Z</updated>
<entry>
<title>update all examples to use unique ID as serial if avaialble</title>
<updated>2023-08-04T03:28:24Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2023-08-04T03:28:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=9697c4df4e57435781119c0d4716635f344ed8f1'/>
<id>urn:sha1:9697c4df4e57435781119c0d4716635f344ed8f1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add board_get_unique_id() for serial number</title>
<updated>2023-08-03T13:42:34Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2023-08-03T13:42:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=041f510f909f0ce8923389c847a8d55e0b7eeee2'/>
<id>urn:sha1:041f510f909f0ce8923389c847a8d55e0b7eeee2</id>
<content type='text'>
implemented board_get_unique_id() for rp2040 and L4
</content>
</entry>
<entry>
<title>fix trailing space and new line</title>
<updated>2023-03-17T09:12:49Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2023-03-17T09:12:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=3623ba1884ddff23e9b64766cb6dd032f1425846'/>
<id>urn:sha1:3623ba1884ddff23e9b64766cb6dd032f1425846</id>
<content type='text'>
temporarily disable codespell
</content>
</entry>
<entry>
<title>add more warning option, also fix  -Wconversion with rp2040</title>
<updated>2022-06-24T12:46:19Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2022-06-24T12:45:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=4f6e770eda9f8c605b238f35def1edaff93a8fb8'/>
<id>urn:sha1:4f6e770eda9f8c605b238f35def1edaff93a8fb8</id>
<content type='text'>
-Wuninitialized, -Wunused,  -Wredundant-decls
</content>
</entry>
<entry>
<title>Fix spelling mistakes and verify endpoint numbering.</title>
<updated>2021-12-08T11:24:39Z</updated>
<author>
<name>Gordon McNab</name>
<email>gordon.mcnab@brtchip.com</email>
</author>
<published>2021-12-08T11:24:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=bcbcdf87de303a4db1724de2a813b80f13d7d906'/>
<id>urn:sha1:bcbcdf87de303a4db1724de2a813b80f13d7d906</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'master' into port-ft90x</title>
<updated>2021-12-08T08:36:43Z</updated>
<author>
<name>Gordon McNab</name>
<email>gordon.mcnab@brtchip.com</email>
</author>
<published>2021-12-08T08:36:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=9a7db985931ae215e808d40e7bacd52535d45305'/>
<id>urn:sha1:9a7db985931ae215e808d40e7bacd52535d45305</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'master' into fix-warnings</title>
<updated>2021-10-23T14:23:56Z</updated>
<author>
<name>Ha Thach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2021-10-23T14:23:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=311c05b401591507cbc4977926bcc878d3f119aa'/>
<id>urn:sha1:311c05b401591507cbc4977926bcc878d3f119aa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>msc examples: Extend serial number to 12 digits</title>
<updated>2021-10-15T12:07:40Z</updated>
<author>
<name>Jerzy Kasenberg</name>
<email>jerzy.kasenberg@codecoup.pl</email>
</author>
<published>2021-10-15T11:47:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=9a688224d0b19a7b4d33c8bb767d0486d5b1bccd'/>
<id>urn:sha1:9a688224d0b19a7b4d33c8bb767d0486d5b1bccd</id>
<content type='text'>
USB3CV tool complains about too short serial number being used
in MSC device.

This just extends serial number to 12 characters, it makes it
easier to analyze USB3CV logs where this unnecessary warning
made output red.

Offending warning:
Serial Number string for MSC device : iSerialNumber = 0x3
Checking iSerialNumber String Descriptor: index = 0x03.
String Descriptor : "123456". (ENGLISH_US)
Using Language ID 0x409
MSC Serial Number length = 14
Invalid MSC Serial Number length : should be &gt;= 26
*************************
Invalid MSC Serial Number length
*************************
*************************
(MSC: 5.1.2) Serial number must be a string, 12 characters or longer
(if the device supports a BOT interface, bInterfaceProtocol = 0x50),
or exactly 12 characters long (if the device supports a CBI interface,
bInterfaceProtocol = 0x00 or 0x01, and has a serial number).
</content>
</entry>
<entry>
<title>update some sense warning from -Wconversion</title>
<updated>2021-10-15T08:54:32Z</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2021-10-15T08:54:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=7596cb30797c625a0523e0f68ef65296740538e0'/>
<id>urn:sha1:7596cb30797c625a0523e0f68ef65296740538e0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Modify cdc_msc example for Bridgetek FT90x/FT93x</title>
<updated>2021-10-06T08:15:33Z</updated>
<author>
<name>Gordon McNab</name>
<email>Gordon.McNab@ftdichip.com</email>
</author>
<published>2021-10-06T08:15:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/tinyusb.git/commit/?id=bcecbfdc29f58ac019a36099a8c398650cd27191'/>
<id>urn:sha1:bcecbfdc29f58ac019a36099a8c398650cd27191</id>
<content type='text'>
Add in endpoint definitions for the Bridgetek devices in usb_descriptors.c and allow high speed in tusb_config.h.
</content>
</entry>
</feed>
