summaryrefslogtreecommitdiff
path: root/docs/revision_history.txt
blob: 00a202a36c18ecc97c9859e88623824e90c99079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
                                            USBX
                                            
For version 6 and higher, please refer to the release notes on GitHub at https://github.com/eclipse-threadx/usbx/releases.
Below is the revision history for 5.x.


08/15/2019  USBX generic code version 5.9. This release includes the following  modifications:

            ux_api.h                                        Added IAD descriptor support,
                                                            added symbols that allow users to set stack sizes
                                                            for individual threads in the enum and hcd thread,
                                                            added support for HID client removal,
                                                            added computation of lowest thread priority in system
                                                            structure fixed timeout definitions,
                                                            added network prototypes,
                                                            added thread pending member to transfer control block,
                                                            added synchronize cache function trace macros,
                                                            added error context definition for device stack tracking,
                                                            updated error code constants comment,
                                                            added new error code for CDC-ECM,
                                                            added data memory barrier definition,
                                                            added new error code for general malformed packets,
                                                            fix API #define for device stack _transfer_abort,
                                                            removed unused device member from DCD struct,
                                                            added max length symbols for class and HCD names,
                                                            changed name buffer in structs to use max class name length symbol.

            ux_port.h                                       Use UX_SYSTEM_INIT instead of UX_SYSTEM_HOST_INIT which is wrong,
                                                            reduced MAX_HOST_LUN down to MAX_MEDIA,
                                                            added #define for UX_HOST_CLASS_STORAGE_MAX_MEDIA,
                                                            set UX_HOST_ENUM_THREAD_STACK_SIZE to 2048 for MSC demo.

            ux_user.h                                       Added symbol for switching CB/CBI code,
                                                            added UX_SLAVE_CLASS_STORAGE_INCLUDE_MMC for multi-media command support,
                                                            added symbols for new HID key mode,
                                                            made CDC-ECM packet allocation timeout configurable (for debug purposes),
                                                            made UX_DEVICE_CLASS_HID_EVENT_BUFFER_LENGTH configurable,
                                                            made UX_DEVICE_CLASS_HID_MAX_EVENTS_QUEUE configurable,
                                                            added UX_HOST_CLASS_STORAGE_THREAD_STACK_SIZE,
                                                            added UX_HOST_CLASS_CDC_ECM_NX_PKPOOL_ENTRIES,
                                                            fix symbol name for max number of slave classes.

            ux_system.h                                     Added support for IAD descriptor,
                                                            added define guard for APIs,
                                                            added audio class name.
            ux_system_initialize.c                          Added cache safe memory pool size initialization,
                                                            added support for IAD descriptor,
                                                            changed system mutex name to something more descriptive.
            ux_system_uninitialize.c                        Removed symbol UX_SYSTEM_INIT.

            ux_utility.h                                    Fixed function name error.
            ux_utility_debug_log.c                          Filter for USBX init state.
            ux_utility_memory_allocate.c                    Fixed allocation of memory with single pool.
            ux_utility_memory_free.c                        Fixed memory size returned to pool.
                                                            Fixed regular memory range check issue.
            ux_utility_thread_schedule_other.c              Uses the lowest priority thread instead of the TX theoretical
                                                            minimum thread when changing priority avoiding issues
                                                            with watchdogs.
            ux_utility_thread_sleep.c                       Computes the TX timer tick from the passing millisecond delay.
            ux_utility_semaphore_get.c                      Computes the lowest priority of threads using USBX services.

            ux_device_stack_initialize.c                    Added audio class name,
                                                            improved error handling.
            ux_device_stack_alternate_setting_get.c         Returned error code instead of stall on protocol error.
            ux_device_stack_alternate_setting_set.c         Added configured state check,
                                                            limited descriptors search in current configuration,
                                                            fixed endpoint chain update to attach the endpoint after dcd creation success,
                                                            fixed bug when class driver not registered,
                                                            reported protocol error if alternate setting not found,
                                                            returned error code instead of call dcd to send protocol error,
                                                            kept semaphore when unmounting endpoints.
            ux_device_stack_class_unregister.c              Fixed if statement.
            ux_device_stack_configuration_set.c             Improved configuration search and selecting flow,
                                                            added power state and remote wakeup support.
            ux_device_stack_control_request_process.c       Returned protocol error on SetDescriptor request, added
                                                            DCD call to send STALL (protocol error) when request
                                                            handling function return error.
            ux_device_stack_interface_set.c                 Improved resource management on error cases.
            ux_device_stack_interface_start.c               Fixed issue in case class driver not registered,
                                                            improved internal logic.

            ux_host_stack_class_device_scan.c               Added support for IAD descriptor,
                                                            handles activation failure.
            ux_host_stack_device_get.c                      Fixed non first device scanning,
                                                            improved internal logic.
            ux_host_stack_device_resources_free.c           Added filter to clean device resources.
                                                            Fixed a corner case where resources associated with an end point may not be released.
                                                            Fixed a potential resource leak when device is removed.
            ux_host_stack_initialize.c                      Changed to use separated stack size definitions for USBX host threads,
                                                            improved error handling.
            ux_host_stack_new_device_create.c               Init control transfer request endpoint,
                                                            improved error handling,
                                                            changed semaphore names,
                                                            increased number of devices if new device container is found,
                                                            set control endpoint state to running after semaphore and hcd creation.
            ux_host_stack_new_interface_create.c            Improved endpoint descriptor search method.
            ux_host_stack_rh_device_insertion.c             Replaced ms sleep with ThreadX,
                                                            improved device resources management in fail retry case.
            ux_host_stack_transfer_request.c                Fixed a possible race condition between this thread and enum
                                                            thread, saved pending thread in transfer request structure.
            ux_host_stack_transfer_request_abort.c          Added filter to put semaphore.

            ux_device_class_cdc_acm.h                       Added abort to IOCTL,
                                                            added DTR callback, proper prototype,
                                                            switched to smaller data types,
                                                            added non blocking read/write functions,
                                                            added transfer timeout setup function,
                                                            added status code for control request handling.
            ux_device_class_cdc_acm_deactivate.c            Added transmission stop,
                                                            added resetting of DTR/RTS values,
            ux_device_class_cdc_acm_ioctl.c                 Added new IOCTLs, for LineState and non-blocking read/write.
            ux_device_class_cdc_acm_read.c                  Added protection when using non-blocking mode.
            ux_device_class_cdc_acm_write.c                 Added protection when using non-blocking mode.
            ux_device_class_cdc_acm_bulkin_thread.c         Thread for non-blocking write.
            ux_device_class_cdc_acm_bulkout_thread.c        Thread for non-blocking read.
            ux_device_class_cdc_acm_write_with_callback.c   Write to host with non-blocking callback mode.

            ux_device_class_cdc_ecm.h                       Added timeout for packet allocation,
                                                            added class uninitialization function,
                                                            removed unused semaphore and function prototype,
                                                            added status code for control request handling.
            ux_device_class_cdc_ecm_activate.c              Fixed link up signal to distinguish between no bulk
                                                            alternating setting framework, added call to application
                                                            activation callback if default setting contains endpoints.
            ux_device_class_cdc_ecm_bulkin_thread.c         Added packet length check,
                                                            removed unnecessary check and error trap,
                                                            adjusted for possible race condition.
            ux_device_class_cdc_ecm_bulkout_thread.c        Added check for packet pool shortage,
                                                            added packet release upon transfer error,
                                                            fixed nx_packet_append_ptr.
            ux_device_class_cdc_ecm_change.c                Stop aborting transfers on bulk out,
                                                            inform network driver of link change,
                                                            wakes up bulk in thread to clean up
                                                            and invoke app deactivate callback
                                                            when changing to alternate 0.
            ux_device_class_cdc_ecm_initialize.c            Improve error management.

            ux_device_class_hid_event_get.c                 Removed unnecessary error callback invocation.
            ux_device_class_hid_event_set.c                 Added support for HID multiple reports,
                                                            enhance memory boundary check.
            ux_device_class_hid_report_set.c                Fixed an issue that the function returns incorrect value,
                                                            added support for client removal event and multiple reports.

            ux_device_class_rndis.h                         Added packet allocation timeout value,
                                                            added status code for control request handling,
                                                            added compile-time check to ensure max RNDIS response
                                                            length can fit in control transfer buffer,
                                                            removed undefined prototype.
            ux_device_class_rndis_bulkout_thread.c          Added check for packet pool shortage,
                                                            added packet release upon transfer error,
                                                            added check if packet size is at least RNDIS header size,
                                                            added check if packet length in RNDIS header is correct,
                                                            fixed nx_packet_append_ptr.
            ux_device_class_rndis_initialize.c              Used OID list length symbol for OID list array init,
                                                            improved error handling.

            ux_device_class_storage.h                       Added write-protect support,
                                                            added insert/extract event support,
                                                            added uninitialize support,
                                                            added strings (vendor id, product id, revision and serial),
                                                            customization by initialize parameter,
                                                            added SYNCHRONIZE CACHE support,
                                                            added phase error support,
                                                            added status code for control request handling,
                                                            added symbols for ModeSense modes and operations.
            ux_device_class_storage_initialize.c            Added write-protect support,
                                                            added insert/extract event support,
                                                            added strings customization,
                                                            added SYNCHRONIZE CACHE support,
                                                            added more descriptive thread name,
                                                            improved error handling.
            ux_device_class_storage_mode_sense.c            Added write-protect support,
                                                            sets the cache page cache enabled bit (WCE)
                                                            if cache callback is implemented,
                                                            added compile-time check to ensure CDROM page can fit in
                                                            control transfer buffer,
                                                            fixed ModeSense(10) support,
                                                            isolated MMC/CD support.
            ux_device_class_storage_thread.c                Added SYNCHRONIZE CACHE support,
                                                            added symbol to isolate MMC support,
                                                            added support for phase error,
                                                            fixed command error cases handling.
            ux_device_class_storage_write.c                 Added write-protect support,
                                                            fixed macro names.

            ux_host_class_asix_activate.c                   Fixed warning when NX_PHYSICAL_HEADER less than 20,
                                                            changed semaphore names,
                                                            removed unnecessary status check,
                                                            improved resources handling.

            ux_host_class_cdc_acm_deactivate.c              Fixed an issue where data buffer assigned to interrupt transfer was not released.
            ux_host_class_cdc_acm_reception_callback.c      Fixed reception overflow issue.
            ux_host_class_cdc_acm_reception_stop.c          Reset transfer request completion callback to NULL on stop,
                                                            clear additional semaphore counts on stop,
                                                            fixed description.

            ux_host_class_cdc_ecm.h                         Added support for IAD descriptor,
                                                            made packet allocation timeout configurable,
                                                            removed unused receive queue,
                                                            removed unused instance semaphore,
                                                            added transfer sync members,
                                                            removed undefined prototypes,
                                                            added transmit queue clean prototype,
                                                            removed interface pointers and added instance pointers,
                                                            added transmit queue tail.
            ux_host_class_cdc_ecm_activate.c                Added support for IAD descriptor,
                                                            better support for ECM composite,
                                                            changed semaphore and thread names,
                                                            removed unnecessary status check,
                                                            linked control and data interfaces,
                                                            delayed CDC-ECM thread activation until after data
                                                            interface has been processed,
                                                            removed unused semaphore,
                                                            improved internal logic.
            ux_host_class_cdc_ecm_endpoints_get.c           Removed the mandatory INT endpoint,
                                                            added support for default alternate setting with no endpoint,
                                                            improved invalid data interface checks,
                                                            improved logic of getting endpoint on index.
            ux_host_class_cdc_ecm_thread.c                  Pass timeout value to nx_packet_allocate,
                                                            save status from nx_packet_allocate for debugging,
                                                            invoke error callback if packet allocation times out,
                                                            fixed link down bugs.
            ux_host_class_cdc_ecm_transmission_callback.c   Checked the control instance's link status instead of the data's,
                                                            added error callback invocation when transfer fails,
                                                            fixed ordering of checks,
                                                            retry transfer upon failure.
            ux_host_class_cdc_ecm_write.c                   Fixed location of xmit queue update,
                                                            added critical zone,
                                                            release packet on error,
                                                            added link state check,
                                                            added transfer synch.
            ux_host_class_cdc_ecm_deactivate.c              Modified internal logic so the control and the data
                                                            interfaces are deactivated at the same time.
            ux_host_class_cdc_ecm_interrupt_notification.c  Improved logic of transfer aborts.
            ux_host_class_cdc_ecm_reception_callback.c      Improved logic of transfer aborts.
            ux_host_class_cdc_ecm_thread.c                  Passed timeout value to nx_packet_allocate,
                                                            saved status from nx_packet_allocate for debugging,
                                                            invoked error callback if packet allocation times out,
                                                            fixed link down bugs.
            ux_host_class_cdc_ecm_mac_address_get.c         Added file to retrieve ECM mac address.

            ux_host_class_hid_keyboard_callback.c           Fixed an error in scanning table between unicode and key mapping,
                                                            fixed SHIFT and CAPS_LOCK decode issue,
                                                            used decompressed report buffer in callback,
                                                            removed compiling warnings,
                                                            added new mode to queue key changes only,
                                                            added error trap on key event queue full.
            ux_host_class_hid_keyboard_ioctl.c              Added IOCTL functions, for keyboard layout and decode.
            ux_host_class_hid_report_callback_register.c    Fixed multiple report parsing.
            ux_host_class_hid_deactivate.c                  Abort INT pipe before removing the instance,
                                                            improved internal logic.

            ux_host_class_storage.h                         Changed timeout value to units of millisecond,
                                                            added keeping track of data phase packet length,
                                                            reduce device init delay,
                                                            added memory waste guard.
            ux_host_class_storage_device_reset.c            Added endpoint resets,
                                                            added CB/CBI symbol check.
            ux_host_class_storage_endpoints_get.c           Added error callback invocation when endpoint isn't found,
                                                            improved internal logic,
                                                            added CB/CBI symbol check.
            ux_host_class_storage_max_lun_get.c             Added cap for max lun,
                                                            added CB/CBI symbol check.
            ux_host_class_storage_media_capacity_get.c      Replaced magic command retry number with proper macro,
                                                            removed unnecessary error callback invocation,
                                                            replaced inline function with actual function,
                                                            return upon transport failure,
                                                            added CB/CBI symbol check.
            ux_host_class_storage_media_read.c              Added check for length of data returned in data phase,
                                                            fixed retry logic,
                                                            added CB/CBI symbol check.
            ux_host_class_storage_media_write.c             Replaced read macros with write ones,
                                                            added CB/CBI symbol check.
            ux_host_class_storage_thread_entry.c            Replaced SOF-based delay with _ux_utility_delay_ms,
                                                            removed unnecessary break at end of switch statement,
                                                            fixed semaphore put race condition.
            ux_host_class_storage_transport.c               Made refactoring added CB/CBI symbol check.
            ux_host_class_storage_transport_bo.c            Added keeping track of data phase packet length,
                                                            made more consistent with specification.
            ux_host_class_storage_transport_cb.c            Added tracking of data phase length,
                                                            fixed timeout value.
            ux_host_class_storage_transport_cbi.c           Added tracking of data phase length,
                                                            fixed timeout value.

            ux_dcd_musb.h                                   Changed timeout value to units of millisecond,
                                                            added size value for FifoAd registers,
                                                            fixed disconnect and connect bit values.
            ux_dcd_musb_endpoint_create.c                   Fixed FIFO addresses,
                                                            clear IntrRxE bit for OUT endpoints.
            ux_dcd_musb_function.c                          Set status after handling SetAddress request.
            ux_dcd_musb_interrupt_handler.c                 Fixed condition for calling transfer callback.

            ux_dcd_rz.h                                     Defined pipe index and ED count,
                                                            added macro value check.
            ux_dcd_rz_buffer_empty_interrupt.c              Fixed reset of interrupts.
            ux_dcd_rz_buffer_write.c                        Used BEMP to control EP when full.
            ux_dcd_rz_current_endpoint_change.c             Waited for ISEL status in FIFO.
            ux_dcd_rz_endpoint_create.c                     Used configurable pipe index.
            ux_dcd_rz_endpoint_destroy.c                    Simplified unmount logic.
            ux_dcd_rz_endpoint_nak_set.c                    Fixed non DCP busy flag.
            ux_dcd_rz_endpoint_reset.c                      Took out duplicated command.
            ux_dcd_rz_interrupt_handler.c                   Changed Control state machine.
            ux_dcd_rz_transfer_abort.c                      Added new DCD file to abort transfer.
            ux_dcd_rz_transfer_callback.c                   Changed Control state machine,
                                                            added transfer size checking.
            ux_dcd_rz_transfer_request.c                    Added interrupt locks to prevent re-entry.

            ux_dcd_stm32.h                                  Added STM32F429 Disco support,
                                                            clarified FIFO sizes,
                                                            added FS FIFO size.
            ux_dcd_stm32_endpoint_create.c                  Added isochronous endpoint,
                                                            reset fifo for endpoint IN,
                                                            set ED direction and type before resetting endpoint.
            ux_dcd_stm32_initialize.c                       Cleared soft disconnect bit,
                                                            fixed FIFO sizes and addresses.

            ux_dcd_at91hs_fifo_write.c                      Fixed bad variable name.

            ux_dcd_rx.h                                     Added define guard for UX_RX_USB_BASE,
                                                            added prototype for transfer abort function.
            ux_dcd_rx_transfer_abort.c                      Function to abort transfer added.
            ux_dcd_rx_function.c                            Function to abort transfer added.
            ux_dcd_rx_buffer_write.c                        Modified usage of BEMP interrupt.
            ux_dcd_rx_endpoint_create.c                     Use regular NAK set function.
            ux_dcd_rx_endpoint_nak_set.c                    Fixed non DCP Busy wait.
            ux_dcd_rx_interrupt_handler.c                   Fixed DCP state machine.
            ux_dcd_rx_transfer_callback.c                   Fixed DCP state machine,
                                                            added transfer size checking.
            ux_dcd_rx_buffer_empty_interrupt.c              Fixed reset of interrupts.
            ux_dcd_rx_transfer_request.c                    Added interrupt locks to prevent re-entry.

            ux_dcd_sim_slave.h                              Added transfer abort function,
                                                            added hub control request process function
                                                            to simulator DCD structure.
            ux_dcd_sim_slave_function.c                     Added support for transfer abort.
            ux_dcd_sim_slave_transfer_abort.c               Added support for transfer abort.

            ux_hcd_ehci_asynch_td_process.c                 Added error callback invocation upon error.
            ux_hcd_ehci_initialize.c                        Created customization files for imx6ul, imx25, k66, xilinx,
                                                            modified custom file for imx6ul for TT.
            ux_hcd_ehci_periodic_tree_create.c              Set type of each queue head in the periodic frame list itself.
            ux_hcd_ehci_power_root_hubs.c                   New custom file for imx6ul to
                                                            access PHY registers according to EHCI base,
                                                            do not clear status bits when powering up ports.
            ux_hcd_ehci_request_bulk_transfer.c             Added data memory barrier.

            ux_hcd_musb_asynch_schedule.c                   Disabled interrupts during ED check and TD schedule.
            ux_hcd_musb_periodic_schedule.c                 Disabled interrupts during ED check and TD schedule.
            ux_hcd_musb_td_schedule.c                       Removed interrupt disabling since callers do it.

            ux_hcd_pic32_asynch_queue_process.c             Moved pointer checking.

            ux_hcd_stm32_initialize_fscore.c                Created customization files for stm32h753 and stm32f769,
                                                            fixed number of channels,
                                                            set USB version in HCD.
            ux_hcd_stm32_asynch_queue_process.c             Fixed buffer overrun problem.
            ux_hcd_stm32_asynch_schedule.c                  Keeps scheduler active in ACK pending cases.
            ux_hcd_stm32_transfer_abort.c                   Flushes and clears TD list on transfer abort.

            ux_hcd_sim_host_initialize.c                    Improved error handling.
            ux_hcd_sim_host_least_traffic_list_get.c        Added a check to detect invalid endpoint.
            ux_hcd_sim_host_transaction_schedule.c          Improved STALL handling,
                                                            transfer completion callback now called for OUT transfers,
                                                            clean up unused parameter compiler warning,
                                                            changed direct call to hub control request process callback.

            ux_network_driver.h                             Added sync objects.
            ux_network_driver.c                             Added uninitialization support,
                                                            fixed race condition.

            Uses ThreadX delay instead of simple loops depends on CPU frequency.
                  ux_hcd_stm32_frame_number_get.c
                  ux_hcd_stm32_port_reset.c

            Add critical protection for possible writing race conditions.
                  ux_hcd_stm32_entry.c
                  ux_hcd_stm32_interrupt_handler.c
                  ux_hcd_stm32_request_bulk_transfer.c
                  ux_hcd_stm32_request_interrupt_transfer.c
                  ux_hcd_stm32_request_isochronous_transfer.c
                  ux_hcd_stm32_td_schedule.c

            Removed bus activity when PCI read/write size is invalid:
                  ux_utility_pci_read
                  ux_utility_pci_write

            This function is deprecated:
                  ux_device_stack_interface_get.c

            These functions are deprecated and headers updated since they are not used any more:
                  ux_host_stack.h
                  ux_host_stack_configuration_delete.c

                  ux_device_class_cdc_acm.h
                  ux_device_class_cdc_acm_control_complete.c
                  ux_device_class_cdc_acm_thread.c

                  ux_device_class_pima.h
                  ux_device_class_pima_control_complete.c

                  ux_host_class_cdc_ecm.h
                  ux_host_class_cdc_ecm_configure.c
                  ux_host_class_cdc_ecm_read.c
                  ux_host_class_cdc_ecm_reception_callback.c

            Improved resource and error handling:
                  ux_host_class_asix_activate.c
                  ux_host_class_gser_activate.c
                  ux_host_class_pima_activate.c
                  ux_host_class_printer_activate.c
                  ux_host_class_prolific_activate.c
                  ux_host_class_storage_activate.c
                  ux_host_class_swar_activate.c

                  ux_device_class_dfu_initialize.c
                  ux_device_class_pima_initialize.c
                  ux_device_class_rndis_initialize.c

                  ux_device_stack_initialize.c
                  ux_host_stack_initialize.c

            Added for more secure string handling:
                  ux_utility_string_length_check.c

            This function is deprecated for more secure string handling:
                  ux_utility_string_length_get.c

            Updated to improve secure string handling:
                  ux_device_class_rndis.h
                  ux_device_class_rndis_initialize.c
                  ux_device_class_rndis_msg_query.c
                  ux_device_class_storage_csw_send.c

                  demo_usbx_lpc2468_storage_host_dual_drive.c
                  demo_usbx_ppc440EPX_hid.c
                  demo_usbx_stm32f2_hcd_gser_ppp.c
                  demo_usbx_tiva_hcd_hid.c

                  ux_host_class_hid.h
                  ux_host_class_hid_client_register.c

                  ux_pictbridge.h
                  ux_pictbridge_array_element_to_array_hexa.c
                  ux_pictbridge_element_to_decimal.c
                  ux_pictbridge_element_to_hexa.c
                  ux_pictbridge_hexa_to_decimal_string.c
                  ux_pictbridge_hexa_to_element.c
                  ux_pictbridge_hexa_to_major_minor.c
                  ux_pictbridge_object_parse.c
                  ux_pictbridge_output_object_tag_line_add.c
                  ux_pictbridge_tag_name_get.c
                  ux_pictbridge_tag_name_scan.c
                  ux_pictbridge_xml_function_input_getcapability_capability_layouts.c
                  ux_pictbridge_xml_function_input_getcapability_capability_papertypes.c
                  ux_pictbridge_xml_function_input_startjob_printinfo_croppingarea.c
                  ux_pictbridge_xml_function_input_startjob_printinfo_date.c
                  ux_pictbridge_xml_function_input_startjob_printinfo_filename.c
                  ux_pictbridge_xml_function_input_startjob_printinfo_filepath.c
                  ux_pictbridge_xml_function_root_dps.c
                  ux_pictbridge_xml_function_root_xml.c
                  ux_pictbridge_dpsclient_api_capability.c
                  ux_pictbridge_dpsclient_input_object_abortjob.c
                  ux_pictbridge_dpsclient_input_object_configure_print_service.c
                  ux_pictbridge_dpsclient_input_object_continuejob.c
                  ux_pictbridge_dpsclient_input_object_get_capability.c
                  ux_pictbridge_dpsclient_input_object_prepare.c
                  ux_pictbridge_dpsclient_input_object_startjob.c
                  ux_pictbridge_dpsclient_object_info_send.c
                  ux_pictbridge_dpsclient_start.c
                  ux_pictbridge_dpsclient_thread.c
                  ux_pictbridge_dpshost_input_object_notify_device_status.c
                  ux_pictbridge_dpshost_input_object_notify_job_status.c
                  ux_pictbridge_dpshost_input_object_send.c
                  ux_pictbridge_dpshost_object_get.c
                  ux_pictbridge_dpshost_output_object_configure_print_service.c
                  ux_pictbridge_dpshost_output_object_create.c
                  ux_pictbridge_dpshost_output_object_get_capability.c
                  ux_pictbridge_dpshost_output_object_get_device_status.c
                  ux_pictbridge_dpshost_response_get.c
                  ux_pictbridge_dpshost_start.c

                  ux_device_stack_class_register.c
                  ux_device_stack_class_unregister.c

                  ux_host_stack_class_get.c
                  ux_host_stack_class_instance_verify.c
                  ux_host_stack_class_register.c
                  ux_host_stack_hcd_register.c

                  ux_system_initialize.c

                  ux_utility.h
                  ux_utility_debug_log.c
                  ux_utility_string_to_unicode.c

            Added uninitialization support:
                  ux_device_class_cdc_ecm_uninitialize.c
                  ux_device_class_storage_uninitialize.c
                  ux_network_driver.c

            Fix USB host class CDC-ECM link down processing:
                  ux_host_class_cdc_ecm.h
                  ux_host_class_cdc_ecm_activate.c
                  ux_host_class_cdc_ecm_deactivate.c
                  ux_host_class_cdc_ecm_interrupt_notification.c
                  ux_host_class_cdc_ecm_reception_callback.c
                  ux_host_class_cdc_ecm_thread.c
                  ux_host_class_cdc_ecm_transmission_callback.c
                  ux_host_class_cdc_ecm_write.c
                  ux_host_class_cdc_ecm_transmit_queue_clean.c

            Fixed C-Stat warnings:
                  ux_device_class_storage_read_dvd_structure.c
                  ux_device_class_storage_report_key.c
                  ux_host_class_cdc_acm_activate.c
                  ux_host_class_hid_activate.c
                  ux_host_class_hid_idle_get.c
                  ux_host_class_hid_keyboard_callback.c
                  ux_host_class_hid_report_callback_register.c
                  ux_host_class_storage_media_mount.c
                  ux_device_stack_clear_feature.c
                  ux_device_stack_control_request_process.c
                  ux_device_stack_descriptor_send.c
                  ux_device_stack_get_status.c
                  ux_device_stack_interface_get.c
                  ux_device_stack_set_feature.c
                  ux_hcd_sim_host_entry.c
                  ux_hcd_sim_host_request_transfer.c
                  ux_utility_semaphore_get.c
                  ux_utility_thread_delete.c

            Fixed and optimized based on code coverage test results:
                  ux_api.h
                  ux_system_initialize.c
                  ux_utility_short_get_big_endian.c
                  ux_utility_memory_allocate.c
                  ux_utility_memory_free.c
                  ux_utility_descriptor_pack.c
                  ux_device_stack_alternate_setting_set.c
                  ux_device_stack_configuration_set.c
                  ux_device_stack_disconnect.c
                  ux_device_stack_descriptor_send.c
                  ux_device_stack_endpoint_stall.c
                  ux_device_stack_transfer_abort.c
                  ux_device_stack_transfer_request.c
                  ux_host_stack_class_device_scan.c
                  ux_host_stack_class_instance_create.c
                  ux_host_stack_configuration_set.c
                  ux_host_stack_new_device_create.c
                  ux_host_stack_transfer_request.c
                  ux_host_stack_transfer_request_abort.c
                  ux_device_class_cdc_acm.h
                  ux_device_class_cdc_acm_ioctl.c
                  ux_device_class_cdc_acm_thread.c
                  ux_device_class_hid.h
                  ux_device_class_hid_activate.c
                  ux_device_class_hid_event_set.c
                  ux_device_class_hid_control_request.c
                  ux_device_class_hid_descriptor_send.c
                  ux_device_class_hid_initialize.c
                  ux_device_class_hid_interrupt_thread.c
                  ux_device_class_hid_uninitialize.c
                  ux_device_class_pima_interrupt_thread.c
                  ux_device_class_storage.h
                  ux_device_class_storage_control_request.c
                  ux_device_class_storage_deactivate.c
                  ux_device_class_storage_format.c
                  ux_device_class_storage_get_configuration.c
                  ux_device_class_storage_get_performance.c
                  ux_device_class_storage_get_status_notification.c
                  ux_device_class_storage_initialize.c
                  ux_device_class_storage_inquiry.c
                  ux_device_class_storage_mode_select.c
                  ux_device_class_storage_mode_sense.c
                  ux_device_class_storage_prevent_allow_media_removal.c
                  ux_device_class_storage_read.c
                  ux_device_class_storage_read_capacity.c
                  ux_device_class_storage_read_disk_information.c
                  ux_device_class_storage_read_dvd_structure.c
                  ux_device_class_storage_read_format_capacity.c
                  ux_device_class_storage_read_toc.c
                  ux_device_class_storage_request_sense.c
                  ux_device_class_storage_thread.c
                  ux_device_class_storage_write.c
                  ux_device_class_dpump_thread.c
                  ux_host_class_cdc_acm_endpoints_get.c
                  ux_host_class_cdc_acm_reception_stop.c
                  ux_host_class_cdc_acm_transfer_request_completed.c
                  ux_host_class_hid.h
                  ux_host_class_hid_activate.c
                  ux_host_class_hid_client_search.c
                  ux_host_class_hid_deactivate.c
                  ux_host_class_hid_global_item_parse.c
                  ux_host_class_hid_idle_get.c
                  ux_host_class_hid_idle_set.c
                  ux_host_class_hid_instance_clean.c
                  ux_host_class_hid_interrupt_endpoint_search.c
                  ux_host_class_hid_keyboard_activate.c
                  ux_host_class_hid_keyboard_callback.c
                  ux_host_class_hid_keyboard_thread.c
                  ux_host_class_hid_global_item_parse.c
                  ux_host_class_hid_local_item_parse.c
                  ux_host_class_hid_main_item_parse.c
                  ux_host_class_hid_mouse_activate.c
                  ux_host_class_hid_periodic_report_start.c
                  ux_host_class_hid_remote_control_activate.c
                  ux_host_class_hid_remote_control_callback.c
                  ux_host_class_hid_remote_control_usage_get.c
                  ux_host_class_hid_report_add.c
                  ux_host_class_hid_report_compress.c
                  ux_host_class_hid_report_descriptor_get.c
                  ux_host_class_hid_report_get.c
                  ux_host_class_hid_report_id_get.c
                  ux_host_class_hid_report_item_analyse.c
                  ux_host_class_hid_report_set.c
                  ux_host_class_hid_transfer_request_completed.c
                  ux_host_class_hub.h
                  ux_host_class_hub_activate.c
                  ux_host_class_hub_change_detect.c
                  ux_host_class_hub_change_process.c
                  ux_host_class_hub_configure.c
                  ux_host_class_hub_deactivate.c
                  ux_host_class_hub_descriptor_get.c
                  ux_host_class_hub_port_change_connection_process.c
                  ux_host_class_hub_port_reset.c
                  ux_host_class_hub_status_get.c
                  ux_host_class_storage.h
                  ux_host_class_storage_activate.c
                  ux_host_class_storage_deactivate.c
                  ux_host_class_storage_endpoints_get.c
                  ux_host_class_storage_entry.c
                  ux_host_class_storage_device_initialize.c
                  ux_host_class_storage_device_reset.c
                  ux_host_class_storage_max_lun_get.c
                  ux_host_class_storage_media_capacity_get.c
                  ux_host_class_storage_media_characteristics_get.c
                  ux_host_class_storage_media_mount.c
                  ux_host_class_storage_media_read.c
                  ux_host_class_storage_media_write.c
                  ux_host_class_storage_thread_entry.c
                  ux_host_class_storage_transport_bo.c
                  ux_host_class_storage_transport_cb.c
                  ux_host_class_storage_transport_cbi.c
                  ux_dcd_sim_slave_transfer_abort.c
                  ux_dcd_sim_slave_function.c
                  ux_dcd_sim_slave_initialize.c
                  ux_hcd_sim_host_transaction_schedule.c
                  ux_hcd_sim_host_entry.c
                  ux_hcd_sim_host_port_reset.c

            Improved stack class driver request handling by checking return code to see if it is owned:
                  ux_device_stack_control_request_process.c
                  ux_device_class_cdc_acm.h
                  ux_device_class_cdc_acm_control_request.c
                  ux_device_class_cdc_ecm.h
                  ux_device_class_hid.h
                  ux_device_class_rndis.h
                  ux_device_class_cdc_acm_entry.c
                  ux_device_class_cdc_ecm_control_request.c
                  ux_device_class_cdc_ecm_entry.c
                  ux_device_class_dfu.h
                  ux_device_class_dfu_control_request.c
                  ux_device_class_dfu_entry.c
                  ux_device_class_hid_control_request.c
                  ux_device_class_hid_entry.c
                  ux_device_class_pima.h
                  ux_device_class_pima_control_request.c
                  ux_device_class_pima_entry.c
                  ux_device_class_rndis_control_request.c
                  ux_device_class_rndis_entry.c
                  ux_device_class_storage.h
                  ux_device_class_storage_control_request.c
                  ux_device_class_storage_entry.c

            Added USB device class Audio support:
                  ux_device_class_audio.h
                  ux_device_class_audio*.*

            Added USB device class CDC-ACM state change support:
                  ux_device_class_cdc_acm.h
                  ux_device_class_cdc_acm_control_request.c
                  ux_device_class_cdc_acm_initialize.c
                  ux_device_class_cdc_acm_ioctl.c

            Added USB device class CDC-ACM timeout adjustment support:
                  ux_device_class_cdc_acm.h
                  ux_device_class_cdc_acm_ioctl.c
                  ux_dcd_sim_slave_transfer_request.c

            Added USB host class HID keyboard layout customization support:
                  ux_host_class_hid_keyboard.h
                  ux_host_class_hid_keyboard_activate.c
                  ux_host_class_hid_keyboard_ioctl.c
                  ux_host_class_hid_keyboard_callback.c

            Improved USB host class HID keyboard keys decode, added configurable modes in ux_user.h:
                  ux_user.h
                  ux_host_class_hid_keyboard.h
                  ux_host_class_hid_keyboard_callback.c
                  ux_host_class_hid_keyboard_activate.c
                  ux_host_class_hid_keyboard_deactivate.c
                  ux_host_class_hid_keyboard_ioctl.c

            Optimized USB host class HID usage array memory use:
                  ux_host_class_hid.h
                  ux_host_class_hid_report_compress.c
                  ux_host_class_hid_field_decompress.c
                  ux_host_class_hid_report_add.c

            Added USB device class storage write-protect support:
                  ux_device_class_storage.h
                  ux_device_class_storage_initialize.c
                  ux_device_class_storage_mode_sense.c
                  ux_device_class_storage_write.c

            Added interface to change USB device class storage strings (vendor id, product id, revision and serial):
                  ux_device_class_storage.h
                  ux_device_class_storage_initialize.c
                  ux_device_class_storage_inquiry.c

            Added USB device class storage SYNCHRONIZE_CACHE command support:
                  ux_device_class_storage.h
                  ux_device_class_storage_initialize.c
                  ux_device_class_storage_synchronize_cache.c
                  ux_device_class_storage_thread.c
                  ux_device_class_storage_write.c

            Added USB host class storage CB/CBI symbol isolate to optimize code:
                  ux_host_class_storage_deactivate.c
                  ux_host_class_storage_device_reset.c
                  ux_host_class_storage_device_support_check.c
                  ux_host_class_storage_endpoints_get.c
                  ux_host_class_storage_max_lun_get.c
                  ux_host_class_storage_media_capacity_get.c
                  ux_host_class_storage_media_characteristics_get.c
                  ux_host_class_storage_media_format_capacity_get.c
                  ux_host_class_storage_media_mount.c
                  ux_host_class_storage_media_protection_check.c
                  ux_host_class_storage_media_read.c
                  ux_host_class_storage_media_recovery_sense_get.c
                  ux_host_class_storage_media_write.c
                  ux_host_class_storage_request_sense.c
                  ux_host_class_storage_start_stop.c
                  ux_host_class_storage_transport.c
                  ux_host_class_storage_unit_ready_test.c

            Improved transfer timeout, uses ticks instead of milliseconds:
                  ux_host_class_storage_transport_cb.c
                  ux_host_class_storage_transport_cbi.c
                  ux_hcd_ehci_request_control_transfer.c
                  ux_hcd_isp1161_request_control_transfer.c
                  ux_hcd_isp1362_request_control_transfer.c
                  ux_hcd_musb_request_control_transfer.c
                  ux_hcd_ohci_request_control_transfer.c
                  ux_hcd_pic32_request_control_transfer.c
                  ux_hcd_rx_request_control_transfer.c
                  ux_hcd_rz_request_control_transfer.c
                  ux_hcd_sh2a_request_control_transfer.c
                  ux_hcd_stm32_request_control_transfer.c
                  ux_dcd_at91_initialize_complete.c
                  ux_dcd_at91hs_initialize_complete.c
                  ux_dcd_bf52_initialize_complete.c
                  ux_dcd_isp1181_initialize_complete.c
                  ux_dcd_lpc3131_initialize_complete.c
                  ux_dcd_lpc3180_initialize_complete.c
                  ux_dcd_mcf5329_initialize_complete.c
                  ux_dcd_ml6965_initialize_complete.c
                  ux_dcd_musb_initialize_complete.c
                  ux_dcd_pic32_initialize_complete.c
                  ux_dcd_ppc440_initialize_complete.c
                  ux_dcd_rx_initialize_complete.c
                  ux_dcd_rz_initialize_complete.c
                  ux_dcd_sh2a_initialize_complete.c
                  ux_dcd_sh7705_initialize_complete.c
                  ux_dcd_spear_initialize_complete.c
                  ux_dcd_stm32_initialize_complete.c
                  ux_dcd_ti18x_initialize_complete.c
                  ux_dcd_tilm3_initialize_complete.c
                  ux_dcd_altera_initialize_complete.c

            Added USB device remote wakeup support:
                  ux_api.h
                  ux_device_stack_clear_feature.c
                  ux_device_stack_get_status.c
                  ux_device_stack_set_feature.c
                  ux_device_stack_host_wakeup.c

            Added better support for ECM composite:
                  ux_host_class_cdc_ecm.h
                  ux_host_class_cdc_ecm_activate.c
                  ux_host_class_cdc_ecm_configure.c
                  ux_host_class_cdc_ecm_deactivate.c
                  ux_host_class_cdc_ecm_endpoints_get.c
                  ux_host_class_cdc_ecm_reception_callback.c
                  ux_host_class_cdc_ecm_thread.c
                  ux_host_class_cdc_ecm_transmission_callback.c
                  ux_host_class_cdc_ecm_write.c
                  ux_host_class_cdc_ecm_mac_address_get.c

            Modified drivers to avoid receiving buffer overrun in control transfer:
                  ux_dcd_altera_transfer_callback.c
                  ux_dcd_at91_transfer_callback.c
                  ux_dcd_lpc3180_transfer_callback.c
                  ux_dcd_pic32_transfer_callback.c
                  ux_dcd_rx_transfer_callback.c
                  ux_dcd_sh2a_transfer_callback.c
                  ux_dcd_ti18x_transfer_callback.c
                  ux_dcd_musb_transfer_callback.c
                  ux_dcd_at91hs_transfer_callback.c
                  ux_dcd_rz_transfer_callback.c
                  ux_dcd_stm32_transfer_callback.c
                  ux_hcd_musb_asynch_queue_process.c

            Modified to enhance memory boundary check to prevent buffer overflow:
                  ux_device_stack_descriptor_send.c
                  ux_pictbridge_dpsclient_object_data_send.c
                  ux_host_class_pima_device_info_get.c
                  ux_host_class_pima_object_get.c
                  ux_host_class_pima_object_info_get.c
                  ux_host_class_pima_object_info_send.c
                  ux_host_class_pima_read.c
                  ux_host_class_pima_thumb_get.c
                  ux_device_class_hid.h
                  ux_device_class_hid_event_set.c
                  ux_device_class_hid_report_get.c
                  ux_device_class_pima_device_prop_desc_get.c
                  ux_device_class_pima_response_send.c
                  ux_device_class_rndis_bulkin_thread.c
                  ux_device_class_rndis_bulkout_thread.c
                  ux_device_class_storage_mode_sense.c
                  ux_device_class_storage_thread.c
                  ux_pictbridge_dpsclient_object_data_send.c

            Updated RZ host driver, all files updated:
                  ux_hcd_rz_asynchronous_endpoint_create.c
                  ux_hcd_rz_asynchronous_endpoint_destroy.c
                  ux_hcd_rz_asynch_queue_process.c
                  ux_hcd_rz_asynch_queue_process_bemp.c
                  ux_hcd_rz_asynch_queue_process_brdy.c
                  ux_hcd_rz_asynch_queue_process_nrdy.c
                  ux_hcd_rz_asynch_queue_process_sign.c
                  ux_hcd_rz_asynch_schedule.c
                  ux_hcd_rz_buffer_empty_interrupt.c
                  ux_hcd_rz_buffer_notready_interrupt.c
                  ux_hcd_rz_buffer_read.c
                  ux_hcd_rz_buffer_ready_interrupt.c
                  ux_hcd_rz_buffer_write.c
                  ux_hcd_rz_bulk_endpoint_create.c
                  ux_hcd_rz_bulk_int_td_add.c
                  ux_hcd_rz_controller_disable.c
                  ux_hcd_rz_control_endpoint_create.c
                  ux_hcd_rz_control_td_add.c
                  ux_hcd_rz_current_endpoint_change.c
                  ux_hcd_rz_data_buffer_size.c
                  ux_hcd_rz_dma_register_clear.c
                  ux_hcd_rz_dma_register_read.c
                  ux_hcd_rz_dma_register_set.c
                  ux_hcd_rz_dma_register_write.c
                  ux_hcd_rz_dma_rx_interrupt_handler.c
                  ux_hcd_rz_dma_tx_interrupt_handler.c
                  ux_hcd_rz_ed_obtain.c
                  ux_hcd_rz_ed_td_clean.c
                  ux_hcd_rz_endpoint_nak_set.c
                  ux_hcd_rz_endpoint_reset.c
                  ux_hcd_rz_entry.c
                  ux_hcd_rz_fifoc_write.c
                  ux_hcd_rz_fifod_write.c
                  ux_hcd_rz_fifo_port_change.c
                  ux_hcd_rz_fifo_read.c
                  ux_hcd_rz_frame_number_get.c
                  ux_hcd_rz_frame_number_set.c
                  ux_hcd_rz_initialize.c
                  ux_hcd_rz_interrupt_endpoint_create.c
                  ux_hcd_rz_interrupt_handler.c
                  ux_hcd_rz_isochronous_endpoint_create.c
                  ux_hcd_rz_isochronous_td_obtain.c
                  ux_hcd_rz_iso_queue_process.c
                  ux_hcd_rz_iso_schedule.c
                  ux_hcd_rz_least_traffic_list_get.c
                  ux_hcd_rz_low_level_setup.c
                  ux_hcd_rz_periodic_endpoint_destroy.c
                  ux_hcd_rz_periodic_schedule.c
                  ux_hcd_rz_periodic_tree_create.c
                  ux_hcd_rz_port_disable.c
                  ux_hcd_rz_port_enable.c
                  ux_hcd_rz_port_reset.c
                  ux_hcd_rz_port_resume.c
                  ux_hcd_rz_port_status_get.c
                  ux_hcd_rz_port_suspend.c
                  ux_hcd_rz_power_down_port.c
                  ux_hcd_rz_power_on_port.c
                  ux_hcd_rz_power_root_hubs.c
                  ux_hcd_rz_register_clear.c
                  ux_hcd_rz_register_read.c
                  ux_hcd_rz_register_set.c
                  ux_hcd_rz_register_write.c
                  ux_hcd_rz_regular_td_obtain.c
                  ux_hcd_rz_request_bulk_transfer.c
                  ux_hcd_rz_request_control_transfer.c
                  ux_hcd_rz_request_interupt_transfer.c
                  ux_hcd_rz_request_isochronous_transfer.c
                  ux_hcd_rz_request_transfer.c
                  ux_hcd_rz_td_add.c
                  ux_hcd_rz_transfer_abort.c

            Added support for video class:
                  ux_host_class_video.h
                  ux_host_class_video*.*

            Added support for high-bandwidth endpoints, improve bandwidth calculation:
                  ux_host_stack_bandwidth_check.c
                  ux_host_stack_bandwidth_claim.c
                  ux_host_stack_bandwidth_release.c
                  ux_api.h
                  ux_hcd_musb.h
                  ux_hcd_ohci.h
                  ux_hcd_ehci.h
                  ux_hcd_isp1161.h
                  ux_hcd_isp1362.h
                  ux_hcd_pic32.h
                  ux_hcd_rx.h
                  ux_hcd_rz.h
                  ux_hcd_sh2a.h
                  ux_hcd_stm32.h
                  ux_hcd_sim_host.h
                  ux_hcd_musb_initialize.c
                  ux_hcd_stm32_initialize_fscore.c
                  ux_hcd_stm32_initialize_hscore.c

            Added support for client removal event and multiple reports:
                  ux_device_class_hid.h
                  ux_device_class_hid_activate.c
                  ux_device_class_hid_deactivate.c
                  ux_device_class_hid_event_set.c
                  ux_device_class_hid_initialize.c
                  ux_device_class_hid_report_set.c

            Added support for client insertion/removal event:
                  ux_host_class_hid_keyboard_activate.c
                  ux_host_class_hid_keyboard_deactivate.c
                  ux_host_class_hid_mouse_activate.c
                  ux_host_class_hid_mouse_deactivate.c
                  ux_host_class_hid_remote_control_activate.c
                  ux_host_class_hid_remote_control_deactivate.c

            Added support for client event insertion/removal:
                  ux_device_class_pima.h
                  ux_device_class_pima_activate.c
                  ux_device_class_pima_deactivate.c
                  ux_device_class_pima_initialize.c
                  ux_device_class_storage.h
                  ux_device_class_storage_activate.c
                  ux_device_class_storage_deactivate.c
                  ux_device_class_storage_initialize.c

            Added support for mouse wheel:
                  ux_host_class_hid_mouse.h
                  ux_host_class_hid_mouse_callback.c
                  ux_host_class_hid_mouse_wheel_get.c

            This function is obsolete:
                  ux_host_stack_delay_ms.c

            This file is added to support milliseconds wait:
                  ux_utility_delay_ms.c

            Replaced SOF based timer with ux_utility_thread_sleep:
                  ux_hcd_sim_host_transfer_abort.c
                  ux_hcd_ehci_initialize.c
                  ux_dcd_rz_initialize.c
                  ux_host_class_hub_ports_power.c
                  ux_host_class_cdc_acm_activate.c
                  ux_host_class_hub_port_change_connection_process.c
                  ux_host_class_pima_request_cancel.c
                  ux_host_class_storage_device_initialize.c
                  ux_host_class_storage_thread_entry.c
                  ux_hcd_ehci_initialize.c
                  ux_hcd_ehci_port_reset.c
                  ux_hcd_ehci_power_root_hubs.c
                  ux_hcd_isp1161_asynchronous_endpoint_destroy.c
                  ux_hcd_isp1161_periodic_endpoint_destroy.c
                  ux_hcd_isp1161_port_enable.c
                  ux_hcd_isp1161_port_reset.c
                  ux_hcd_isp1161_power_root_hubs.c
                  ux_hcd_isp1161_transfer_abort.c
                  ux_hcd_isp1362_asynchronous_endpoint_destroy.c
                  ux_hcd_isp1362_interrupt_endpoint_destroy.c
                  ux_hcd_isp1362_port_enable.c
                  ux_hcd_isp1362_port_reset.c
                  ux_hcd_isp1362_power_root_hubs.c
                  ux_hcd_isp1362_transfer_abort.c
                  ux_hcd_musb_asynchronous_endpoint_destroy.c
                  ux_hcd_musb_periodic_endpoint_destroy.c
                  ux_hcd_musb_port_reset.c
                  ux_hcd_musb_transfer_abort.c
                  ux_hcd_ohci_asynchronous_endpoint_destroy.c
                  ux_hcd_ohci_periodic_endpoint_destroy.c
                  ux_hcd_ohci_port_enable.c
                  ux_hcd_ohci_port_reset.c
                  ux_hcd_ohci_power_root_hubs.c
                  ux_hcd_ohci_transfer_abort.c
                  ux_hcd_pic32_asynchronous_endpoint_destroy.c
                  ux_hcd_pic32_periodic_endpoint_destroy.c
                  ux_hcd_pic32_port_enable.c
                  ux_hcd_pic32_port_reset.c
                  ux_hcd_pic32_transfer_abort.c
                  ux_hcd_rx_asynchronous_endpoint_destroy.c
                  ux_hcd_rx_periodic_endpoint_destroy.c
                  ux_hcd_rx_port_reset.c
                  ux_hcd_rx_port_status_get.c
                  ux_hcd_rx_transfer_abort.c
                  ux_hcd_rz_asynchronous_endpoint_destroy.c
                  ux_hcd_rz_initialize.c
                  ux_hcd_rz_periodic_endpoint_destroy.c
                  ux_hcd_rz_port_enable.c
                  ux_hcd_rz_port_reset.c
                  ux_hcd_rz_port_status_get.c
                  ux_hcd_rz_transfer_abort.c
                  ux_hcd_sh2a_asynchronous_endpoint_destroy.c
                  ux_hcd_sh2a_periodic_endpoint_destroy.c
                  ux_hcd_sh2a_port_enable.c
                  ux_hcd_sh2a_port_reset.c
                  ux_hcd_stm32_asynchronous_endpoint_destroy.c
                  ux_hcd_stm32_periodic_endpoint_destroy.c
                  ux_hcd_stm32_transfer_abort.c
                  ux_dcd_musb_initialize.c
                  ux_dcd_spear_initialize.c
                  ux_dcd_spear_state_change.c
                  ux_dcd_ti18x_initialize.c
                  ux_dcd_tilm3_initialize.c
                  ux_otg_lpc3131_hcd_stop.c
                  ux_pictbridge_dpsclient_api_capability.c
                  ux_pictbridge_dpsclient_api_configure_print_service.c
                  ux_pictbridge_dpsclient_api_device_status.c

            Added support for controller address check:
                  ux_hcd_rx.h
                  ux_hcd_rx_initialize.c


06/01/2017  USBX generic code version 5.8. This release includes the following  modifications:
            
            *.*                                             Changed format of _ux_system_error_handler.
            ux_api.h                                        Added support for new classes, new prototypes, error traps.
                                                            Added timeout values for control/non control transfer.
                                                            Changed the transfer structure to add timeout values.
                                                            Added a macro to disable warning of parameter not used.
                                                            Added new trace events.
            ux_user.h                                       Added split for host/device with 2 #define.
            ux_utility_error_callback_register.c            Added to allow application to receive errors.
            ux_host_stack_transfer_request.c                Added support for timeout values
            ux_host_class_hid.h                             Fixed TAG_LONG definition.
            ux_hcd_musb_asynchronous_endpoint_create.c      Replace TX_DISABLE definition.
            ux_hcd_musb_interrupt_endpoint_create.c         Replace TX_DISABLE definition.
            ux_hcd_musb_interrupt_handler.c                 Replace TX_DISABLE definition.
            ux_hcd_musb_request_transfer.c                  Filter for device presence.
            ux_hcd_rx_request_transfer.c                    Filter for device presence.
            ux_hcd_pic32_request_transfer.c                 Filter for device presence.
            ux_hcd_stm32_request_transfer.c                 Filter for device presence.
            ux_trace_object_register.c                      Fixed compiler warnings.
            ux_trace_object_unregister.c                    
                       
            ux_hcd_musb*.*                                  Added support for multiple devices.
            ux_host_class_pima.h                            Added _ux ux mapping
            ux_host_class_cdc_ecm.h                         Added _ux ux mapping
                        
            ux_utility_mutex_on.c                           Added mutex status check.
            ux_host_class_hid_local_item_parse.c            Changed status return mechanism.
            ux_host_class_storage_deactivate.c              Check for mounted media status when removing device


            ux_device_class_cdc_acm_ioctl.c                 Added support for changing DTR/RTS.
            ux_device_class_cdc_acm.h
            ux_device_class_cdc_acm_initialize.c                

            ux_host_stack_class_get.c                       Changed declaration for C++ compliancy.
            ux_host_stack_class_instance_create.c           Changed declaration for C++ compliancy.
            ux_host_stack_class_instance_destroy.c          Changed declaration for C++ compliancy.
            ux_host_stack_class_instance_get.c              Changed declaration for C++ compliancy.
            

            ux_hcd_rx_periodic_endpoint_destroy.c           Disable the endpoint in the controller when destroyed.
            ux_host_stack_configuration_interface_get.c     Fixed some possible NULL pointer dereferencing.
            ux_utility_error_callback_register.c            Changed calling parameters.
            ux_system_error_handler.c                       Changed calling parameters.
            ux_host_class_prolific_activate.c               Cleaned up repeated error checking.
            ux_host_class_pima_endpoints_get.c              Fixed error checking for memory allocation.


            The following files are changed for resetting calling parameters.

            ux_host_class_pima_device_info_get.c            
            ux_host_class_pima_num_objects_get.c         
            ux_host_class_pima_object_copy.c             
            ux_host_class_pima_object_delete.c
            ux_host_class_pima_object_handles_get.c
            ux_host_class_pima_object_info_get.c
            ux_host_class_pima_object_info_send.c
            ux_host_class_pima_object_move.c
            ux_host_class_pima_session_close.c
            ux_host_class_pima_session_open.c
            ux_host_class_pima_storage_ids_get.c
            ux_host_class_pima_storage_info_get.c


            ux_host_class_prolific_activate.c               Removed duplicated code.
            ux_host_class_prolific_endpoints_get.c          Fixed error checking for memory allocation.
            ux_host_class_cdc_ecm_endpoints_get.c           Fixed error checking for memory allocation.
            ux_host_class_hid_local_item_parse.c            Fixed missing breaks in HID delimiter parsing .
            ux_host_class_audio_device_type_get.c           Added missing break; statement in CS_INPUT terminal parsing.
            ux_hcd_ehci_asynchronous_endpoint_create.c      Added missing break; statement to filter low speed device.
            ux_hcd_ehci_interrupt_endpoint_create.c         Added missing break; statement to filter low speed device.
            ux_host_class_hid_transfer_request_completed.c  Fixed the callback report flag variable. 
            ux_host_class_hid_global_item_parse.c           Fixed global boundary.
            ux_host_class_hid_main_item_parse.c             Fixed collection boundary.
            ux_host_class_hid_local_item_parse.c            Fixed missing break in switch statement.
            ux_device_class_cdc_acm_read.c                  Fixed 64 bytes read with no ZLP.
            ux_host_class_hid_report_get.c                  Changed error code reporting.
            ux_host_class_hid_report_set.c                  Changed error code reporting.
            ux_host_stack_new_device_create.c               Changed error code reporting.
            ux_host_class_hid_transfer_request_completed.c  Changed error code reporting.
            ux_host_class_hid_keyboard_activate.c           Changed error code reporting.
            ux_host_class_hid_keyboard_thread.c             Changed error code reporting.
            ux_device_class_pima_thread.c                   Changed error code reporting.
            ux_device_class_pima_interrupt_thread.c         Changed error code reporting.
            ux_device_class_dpump_thread.c                  Changed error code reporting.
            ux_device_class_cdc_ecm_interrupt_thread.c      Changed error code reporting.
            ux_device_class_storage_thread.c                Changed error code reporting.
            ux_device_class_hid_interrupt_thread            Changed error code reporting.
            ux_host_class_cdc_acm_capabilities_get.c        Avoid compiler warnings by initializing stack values.
            ux_device_class_storage_read_toc.c              Set toc_length to a default state.
            ux_device_class_storage_read.c                  Moved trace event into the correct position.
            ux_host_class_asix_write.c                      Include error checking code for validity of instance.
            ux_utility_unicode_to_string.c                  Changed second source addressing.
            ux_host_class_cdc_acm_endpoints_get.c           Added better support for error checking.
            
            ux_dcd_musb_fifo_flush.c                        Fixed issues with Fifo management.
            ux_dcd_musb_interrupt_handler.c                 Fixed endpoint parsing sequence index.
            ux_host_stack_interface_instance_create.c       Fixed error code.  
            
            ux_system_initialize.c                          Added host/device split.
            ux_host_stack_initialize.c                      Added host/device split.
            ux_device_stack_initialize.c                    Added host/device split.
            
            ux_dcd_rx*.*                                    Modified all rx device driver files.
                                                    
            The following files are changed in order to modify RX host registers to support dynamic controller base.
            ux_hcd_rx_initialize.c                          
            ux_hcd_rx_register_set.c                        
            ux_hcd_rx_register_set.c                        
            ux_hcd_rx_register_write.c                      
            ux_hcd_rx_register_read.c                       
                
            ux_host_stack_cdc_acm.h                         Added API prototypes.
            
            ux_device_class_cdc_acm_read.c                  Fixed bug for multiple transactions and check for short packet/zlp.
            ux_host_class_storage_media_mount.c             Added code to return error when partition signature is not found in MBR.
            ux_host_stack_transfer_request_abort.c          Modified code to check for transfer status pending.
            ux_host_class_cdc_acm_reception_callback.c      Changed the address of the data_pointer in transfer request after adjustment.
            
            ux_dcd_at91hs_transfer_callback.c               Setting ZLP needed to be set after clearing received buffer flag.
            
            ux_host_class_audio_device_type_get.c           Added missing break.
            ux_device_stack_disconnect.c                    Call application if callback programmed.
            
            The following files are modified for changing call to function that schedules other threads.
            ux_host_class_swar_deactivate.c                 
            ux_host_class_storage_deactivate.c           
            ux_host_class_prolific_deactivate.c          
            ux_host_class_printer_deactivate.c           
            ux_host_class_pima_deactivate.c              
            ux_host_class_hub_deactivate.c               
            ux_host_class_hid_deactivate.c               
            ux_host_class_gser_deactivate.c              
            ux_host_class_cdc_ecm_deactivate.c           
            ux_host_class_cdc_acm_deactivate.c           
            ux_host_class_audio_deactivate.c             
            ux_host_class_asix_deactivate.c              

            Added support for CD-ROM support. The following files were modified or added:

            ux_device_class_storage.h
            ux_device_class_storage_activate.c
            ux_device_class_storage_control_request.c
            ux_device_class_storage_csw_send.c
            ux_device_class_storage_deactivate.c
            ux_device_class_storage_entry.c
            ux_device_class_storage_format.c
            ux_device_class_storage_get_configuration.c
            ux_device_class_storage_get_performance.c
            ux_device_class_storage_get_status_notification.c
            ux_device_class_storage_initialize.c
            ux_device_class_storage_inquiry.c
            ux_device_class_storage_mode_select.c
            ux_device_class_storage_mode_sense.c
            ux_device_class_storage_prevent_allow_media_removal.c
            ux_device_class_storage_read.c
            ux_device_class_storage_read_capacity.c
            ux_device_class_storage_read_disk_information.c
            ux_device_class_storage_read_dvd_structure.c
            ux_device_class_storage_read_format_capacity.c
            ux_device_class_storage_read_toc.c
            ux_device_class_storage_report_key.c
            ux_device_class_storage_request_sense.c
            ux_device_class_storage_start_stop.c
            ux_device_class_storage_test_ready.c
            ux_device_class_storage_thread.c
            ux_device_class_storage_verify.c
            ux_device_class_storage_write.c
            
            Added support for CDC ECM. The following files were added:
            
            ux_host_class_cdc_ecm.h
            ux_host_class_cdc_ecm_activate.c
            ux_host_class_cdc_ecm_configure.c
            ux_host_class_cdc_ecm_deactivate.c
            ux_host_class_cdc_ecm_endpoints_get.c
            ux_host_class_cdc_ecm_entry.c
            ux_host_class_cdc_ecm_interrupt_notification.c
            ux_host_class_cdc_ecm_read.c
            ux_host_class_cdc_ecm_reception_callback.c
            ux_host_class_cdc_ecm_thread.c
            ux_host_class_cdc_ecm_transmission_callback.c

            Added support for Altera device controller. The following files were added:
 
            ux_dcd_altera.h
            ux_dcd_altera_address_set.c
            ux_dcd_altera_delay.c
            ux_dcd_altera_endpoint_create.c
            ux_dcd_altera_endpoint_destroy.c
            ux_dcd_altera_endpoint_register_address_get.c
            ux_dcd_altera_endpoint_reset.c
            ux_dcd_altera_endpoint_stall.c
            ux_dcd_altera_endpoint_status.c
            ux_dcd_altera_fifo_flush.c
            ux_dcd_altera_fifo_read.c
            ux_dcd_altera_fifo_write.c
            ux_dcd_altera_frame_number_get.c
            ux_dcd_altera_function.c
            ux_dcd_altera_initialize.c
            ux_dcd_altera_initialize_complete.c
            ux_dcd_altera_interrupt_handler.c
            ux_dcd_altera_register_clear.c
            ux_dcd_altera_register_read.c
            ux_dcd_altera_register_set.c
            ux_dcd_altera_register_write.c
            ux_dcd_altera_state_change.c
            ux_dcd_altera_transfer_callback.c
            ux_dcd_altera_transfer_request.c

            Added support for the SAMA5 to the AT91HS controller. The following files were modified and added:

            ux_dcd_at91hs.h
            ux_dcd_at91hs_address_set.c
            ux_dcd_at91hs_endpoint_create.c
            ux_dcd_at91hs_endpoint_destroy.c
            ux_dcd_at91hs_endpoint_reset.c
            ux_dcd_at91hs_endpoint_stall.c
            ux_dcd_at91hs_endpoint_status.c
            ux_dcd_at91hs_fifo_read.c
            ux_dcd_at91hs_fifo_write.c
            ux_dcd_at91hs_frame_number_get.c
            ux_dcd_at91hs_function.c
            ux_dcd_at91hs_initialize.c
            ux_dcd_at91hs_initialize_complete.c
            ux_dcd_at91hs_interrupt_handler.c
            ux_dcd_at91hs_register_clear.c
            ux_dcd_at91hs_register_read.c
            ux_dcd_at91hs_register_set.c
            ux_dcd_at91hs_register_write.c
            ux_dcd_at91hs_state_change.c
            ux_dcd_at91hs_transfer_callback.c
            ux_dcd_at91hs_transfer_request.c
       
            The following files are added:
            
            ux_utility_thread_schedule_other.c
            ux_utility_error_callback_register.c
            ux_system_uninitialize.c
            ux_device_stack_uninitialize.c
            ux_device_stack_class_unregister.c
            ux_device_class_hid_uninitialize.c
            ux_device_class_cdc_acm_uninitialize.c

            
            

06/01/2014  USBX generic code version 5.7. This release includes the following 
            modifications:

            Added support for the musb generic controller. The following files were added:


            ux_dcd_musb.h
            ux_dcd_musb_address_set.c
            ux_dcd_musb_endpoint_create.c
            ux_dcd_musb_endpoint_destroy.c
            ux_dcd_musb_endpoint_reset.c
            ux_dcd_musb_endpoint_stall.c
            ux_dcd_musb_endpoint_status.c
            ux_dcd_musb_fifo_flush.c
            ux_dcd_musb_fifo_read.c
            ux_dcd_musb_fifo_write.c
            ux_dcd_musb_frame_number_get.c
            ux_dcd_musb_function.c
            ux_dcd_musb_initialize.c
            ux_dcd_musb_initialize_complete.c
            ux_dcd_musb_interrupt_handler.c
            ux_dcd_musb_register_clear.c
            ux_dcd_musb_register_read.c
            ux_dcd_musb_register_set.c
            ux_dcd_musb_register_write.c
            ux_dcd_musb_state_change.c
            ux_dcd_musb_transfer_callback.c
            ux_dcd_musb_transfer_request.c
            
            
            
            ux_hcd_musb.h
            ux_hcd_musb_asynchronous_endpoint_create.c
            ux_hcd_musb_asynchronous_endpoint_destroy.c
            ux_hcd_musb_asynch_queue_process.c
            ux_hcd_musb_asynch_schedule.c
            ux_hcd_musb_controller_disable.c
            ux_hcd_musb_delay.c
            ux_hcd_musb_ed_obtain.c
            ux_hcd_musb_ed_td_clean.c
            ux_hcd_musb_endpoint_reset.c
            ux_hcd_musb_entry.c
            ux_hcd_musb_frame_number_get.c
            ux_hcd_musb_frame_number_set.c
            ux_hcd_musb_initialize.c
            ux_hcd_musb_interrupt_endpoint_create.c
            ux_hcd_musb_interrupt_handler.c
            ux_hcd_musb_isochronous_endpoint_create.c
            ux_hcd_musb_isochronous_td_obtain.c
            ux_hcd_musb_iso_queue_process.c
            ux_hcd_musb_iso_schedule.c
            ux_hcd_musb_least_traffic_list_get.c
            ux_hcd_musb_periodic_endpoint_destroy.c
            ux_hcd_musb_periodic_schedule.c
            ux_hcd_musb_periodic_tree_create.c
            ux_hcd_musb_port_disable.c
            ux_hcd_musb_port_enable.c
            ux_hcd_musb_port_reset.c
            ux_hcd_musb_port_resume.c
            ux_hcd_musb_port_status_get.c
            ux_hcd_musb_port_suspend.c
            ux_hcd_musb_power_down_port.c
            ux_hcd_musb_power_on_port.c
            ux_hcd_musb_register_clear.c
            ux_hcd_musb_register_read.c
            ux_hcd_musb_register_set.c
            ux_hcd_musb_register_write.c
            ux_hcd_musb_regular_td_obtain.c
            ux_hcd_musb_request_bulk_transfer.c
            ux_hcd_musb_request_control_transfer.c
            ux_hcd_musb_request_interupt_transfer.c
            ux_hcd_musb_request_isochronous_transfer.c
            ux_hcd_musb_request_transfer.c
            ux_hcd_musb_td_schedule.c
            ux_hcd_musb_transfer_abort.c


            Added support for the Renesas RZ controller. The following files were added:

            ux_hcd_rz.h
            ux_hcd_rz_asynchronous_endpoint_create.c
            ux_hcd_rz_asynchronous_endpoint_destroy.c
            ux_hcd_rz_asynch_queue_process.c
            ux_hcd_rz_asynch_queue_process_bemp.c
            ux_hcd_rz_asynch_queue_process_brdy.c
            ux_hcd_rz_asynch_queue_process_nrdy.c
            ux_hcd_rz_asynch_queue_process_sign.c
            ux_hcd_rz_asynch_schedule.c
            ux_hcd_rz_buffer_empty_interrupt.c
            ux_hcd_rz_buffer_notready_interrupt.c
            ux_hcd_rz_buffer_read.c
            ux_hcd_rz_buffer_ready_interrupt.c
            ux_hcd_rz_buffer_write.c
            ux_hcd_rz_bulk_endpoint_create.c
            ux_hcd_rz_bulk_int_td_add.c
            ux_hcd_rz_controller_disable.c
            ux_hcd_rz_control_endpoint_create.c
            ux_hcd_rz_control_td_add.c
            ux_hcd_rz_current_endpoint_change.c
            ux_hcd_rz_data_buffer_size.c
            ux_hcd_rz_ed_obtain.c
            ux_hcd_rz_ed_td_clean.c
            ux_hcd_rz_endpoint_nak_set.c
            ux_hcd_rz_endpoint_reset.c
            ux_hcd_rz_entry.c
            ux_hcd_rz_fifoc_write.c
            ux_hcd_rz_fifod_write.c
            ux_hcd_rz_fifo_port_change.c
            ux_hcd_rz_fifo_read.c
            ux_hcd_rz_frame_number_get.c
            ux_hcd_rz_frame_number_set.c
            ux_hcd_rz_initialize.c
            ux_hcd_rz_interrupt_endpoint_create.c
            ux_hcd_rz_interrupt_handler.c
            ux_hcd_rz_isochronous_endpoint_create.c
            ux_hcd_rz_isochronous_td_obtain.c
            ux_hcd_rz_iso_queue_process.c
            ux_hcd_rz_iso_schedule.c
            ux_hcd_rz_least_traffic_list_get.c
            ux_hcd_rz_low_level_setup.c
            ux_hcd_rz_periodic_endpoint_destroy.c
            ux_hcd_rz_periodic_schedule.c
            ux_hcd_rz_periodic_tree_create.c
            ux_hcd_rz_port_disable.c
            ux_hcd_rz_port_enable.c
            ux_hcd_rz_port_reset.c
            ux_hcd_rz_port_resume.c
            ux_hcd_rz_port_status_get.c
            ux_hcd_rz_port_suspend.c
            ux_hcd_rz_power_down_port.c
            ux_hcd_rz_power_on_port.c
            ux_hcd_rz_power_root_hubs.c
            ux_hcd_rz_register_clear.c
            ux_hcd_rz_register_read.c
            ux_hcd_rz_register_set.c
            ux_hcd_rz_register_write.c
            ux_hcd_rz_regular_td_obtain.c
            ux_hcd_rz_request_bulk_transfer.c
            ux_hcd_rz_request_control_transfer.c
            ux_hcd_rz_request_interupt_transfer.c
            ux_hcd_rz_request_isochronous_transfer.c
            ux_hcd_rz_request_transfer.c
            ux_hcd_rz_td_add.c
            ux_hcd_rz_transfer_abort.c
            
            ux_dcd_rz.h
            ux_dcd_rz_address_set.c
            ux_dcd_rz_buffer_empty_interrupt.c
            ux_dcd_rz_buffer_notready_interrupt.c
            ux_dcd_rz_buffer_read.c
            ux_dcd_rz_buffer_ready_interrupt.c
            ux_dcd_rz_buffer_write.c
            ux_dcd_rz_current_endpoint_change.c
            ux_dcd_rz_data_buffersize.c
            ux_dcd_rz_endpoint_create.c
            ux_dcd_rz_endpoint_destroy.c
            ux_dcd_rz_endpoint_nak_set.c
            ux_dcd_rz_endpoint_reset.c
            ux_dcd_rz_endpoint_stall.c
            ux_dcd_rz_endpoint_status.c
            ux_dcd_rz_fifoc_write.c
            ux_dcd_rz_fifod_write.c
            ux_dcd_rz_fifo_port_change.c
            ux_dcd_rz_fifo_read.c
            ux_dcd_rz_frame_number_get.c
            ux_dcd_rz_function.c
            ux_dcd_rz_initialize.c
            ux_dcd_rz_initialize_complete.c
            ux_dcd_rz_interrupt_handler.c
            ux_dcd_rz_low_level_setup.c
            ux_dcd_rz_pipe_select.c
            ux_dcd_rz_register_clear.c
            ux_dcd_rz_register_read.c
            ux_dcd_rz_register_set.c
            ux_dcd_rz_register_write.c
            ux_dcd_rz_state_change.c
            ux_dcd_rz_transfer_callback.c
            ux_dcd_rz_transfer_request.c

            Added support for the Microsoft MTP extensions. Fixed bugs, the following files were added and modified:
            
            ux_device_class_pima_initialize.c
            ux_device_class_pima_object_prop_desc_get.c
            ux_device_class_pima_object_prop_value_get.c
            ux_device_class_pima_object_prop_value_set.c
            ux_device_class_pima_object_props_supported_get.c
            ux_device_class_pima_object_references_get.c
            ux_device_class_pima_object_references_set.c
            ux_device_class_pima_device_prop_desc_get.c
            ux_device_class_pima_device_prop_value_get.c
            ux_device_class_pima_device_prop_value_set.c
            ux_device_class_pima_object_data_get.c
            ux_device_class_pima_object_data_send.c
            ux_device_class_pima_object_handles_send.c
            ux_device_class_pima_object_info_get.c
            ux_device_class_pima_object_info_send.c
            ux_device_class_pima_objects_number_send.c
            ux_device_class_pima_partial_object_data_get.c
            ux_device_class_pima_response_send.c
            ux_device_class_pima_storage_format.c
            ux_device_class_pima_storage_id_send.c
            ux_device_class_pima_thread.c
            
            ux_utility_debug_log.c                      Added to provide debugging capability with log messages
            ux_system_error_handler.c                   Added to provide a error trap and error counter
                                                        Most USBX files modified to call this function when an
                                                        error happens.

            ux_host_class_storage_transport_bo.c        Fixed bug in reset sequence for BO transport
            ux_host_class_storage_deactivate.c          Fixed endpoint transfer abort calls
            ux_host_class_storage_transport.c           Fixed reset on stalled transfer.
            
            ux_device_class_cdc_ecm_bulkin_thread.c     Fixed packet release leak when link goes down.
            ux_device_class_rndis_bulkin_thread.c       "                   "                     "
            
            ux_host_stack_transfer_request_abort.c      Only wake up class semaphore on abort if transaction is pending.
            

            ux_device_stack_microsoft_extension_register.c
                                                        Added to support Microsoft Control commands 
            ux_dcd_ti18x_transfer_callback.c            Fixed bug when a SETUP packet is followed by no data payload.
            
            ux_device_class_cdc_acm.h                   Added prototypes definitions without leading _
            ux_device_class_dfu.h            
            ux_device_class_hid.h            
            ux_device_class_pima.h            
            ux_device_class_storage_entry
            ux_host_class_asix.h
            ux_host_class_audio.h
            ux_host_class_cdc_acm.h
            ux_host_class_gser.h
            ux_host_class_hid.h
            ux_host_class_hid_mouse.h
            ux_host_class_hid_keyboard.h
            ux_host_class_hid_remote_control.h
            ux_host_class_pima.h
            ux_host_class_printer.h
            ux_host_class_prolific.h
            ux_host_class_storage.h
            ux_host_class_swar.h
            
            ux_host_class_hid_mouse_activate.c          Added Hid instance in mouse instance descriptor
            ux_host_class_hid_mouse_callback.c          Changed x/y position update to use SCHAR values

            ux_api.h                                    Added SCHAR default type, and added new constants, 
                                                        macros for debug/log
            
            ux_dcd_stm32_delay.c                        Changed the delay variable and made it a #define
            ux_hcd_stm32_delay.c
            ux_dcd_stm32.h
            ux_hcd_stm32.h
            ux_dcd_stm32_interrupt_handler.c            Changed speed detection mechanism
            ux_dcd_stm32_transfer_callback.c            Forced flushing fifo when new setup packet is received
                                                        Memorize endpoint direction for STALL.
            ux_dcd_stm32_transfer_request.c             Added payload length reset
                                                        Fixed register setting.
                                                        
            ux_dcd_musb_endpoint_create.c               Fixed FIFO configuration address start
            ux_dcd_ti18x_endpoint_create.c              "                "              "                                                        
                                                        
            ux_dcd_pic32_endpoint_destroy.c             Fixed ping pong bdt flag error in removing endpoints                                                        
            ux_dcd_pic32_endpoint_stall_clear.c         Reset toggle flag when endpoint clears the STALL.
            ux_dcd_pic32_transfer_callback.c            Fixed Setup state machine.    

            ux_host_class_hid_report_descriptor_get.c   Fixed memory free when descriptor is corrupted.

            ux_pictbridge_dpsclient_input_object_prepare.c   Added functions for Abort/Continue
            ux_pictbridge_dpsclient_input_object_startjob.c  Change the XML buildup of the print info.
            ux_pictbridge_dpsclient_object_data_get.c   Change the call parameters to read data.
            ux_pictbridge_dpsclient_object_data_send.c  Add continue/abort events
            ux_pictbridge_dpsclient_object_info_get.c   Changed the way the object info is returned if not a script.
            ux_pictbridge_dpsclient_thread.c            Added callback to application if function supplied.

            ux_pictbridge.h                             Added prototypes for new functions
            ux_pictbridge_data.c                        Added ContinueJob, abort job ...
            
                                                        Added support for new functions:
            ux_pictbridge_xml_function_input_getcapability_capability_layouts.c                                                        
            ux_pictbridge_xml_function_input_getcapability_capability_papertypes.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_capabilitychanged.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_disconnectenable.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_dpsprintservicestatus.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_errorreason.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_errorstatus.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_jobendreason.c                                                        
            ux_pictbridge_xml_function_input_notifydevicestatus_newjobok.c                                                        


10/10/2012  USBX generic code version 5.6. This release includes the following 
            modifications:
            
                                                        
            ux_api.h                                    Added new constants, and DFU class support                                             
            ux_device_stack_initialize.c                Added new USBX class names                                        
            
                                                        Changed dpump class to allow for change of alternate setting
                                                        The following files have been modified/added:
            ux_device_class_dpump.h
            ux_device_class_dpump_change.c
            ux_device_class_dpump_read.c
            ux_device_class_dpump_write.c
            ux_device_class_dpump_entry.c
            ux_host_class_dpump_ioctl.c            

                                                        Added support for the DFU device class, the following files have been added:

            ux_device_class_dfu.h
            ux_device_class_dfu_activate.c
            ux_device_class_dfu_control_request.c
            ux_device_class_dfu_deactivate.c
            ux_device_class_dfu_entry.c
            ux_device_class_dfu_initialize.c

            
                                                        Added support for the Renesas RX device controller. The following files have been added:
                                                        
            ux_dcd_rx.h
            ux_dcd_rx_address_set.c
            ux_dcd_rx_buffer_empty_interrupt.c
            ux_dcd_rx_buffer_notready_interrupt.c
            ux_dcd_rx_buffer_read.c
            ux_dcd_rx_buffer_ready_interrupt.c
            ux_dcd_rx_buffer_write.c
            ux_dcd_rx_current_endpoint_change.c
            ux_dcd_rx_data_buffersize.c
            ux_dcd_rx_endpoint_create.c
            ux_dcd_rx_endpoint_destroy.c
            ux_dcd_rx_endpoint_nak_set.c
            ux_dcd_rx_endpoint_reset.c
            ux_dcd_rx_endpoint_stall.c
            ux_dcd_rx_endpoint_status.c
            ux_dcd_rx_fifoc_write.c
            ux_dcd_rx_fifod_write.c
            ux_dcd_rx_fifo_port_change.c
            ux_dcd_rx_fifo_read.c
            ux_dcd_rx_frame_number_get.c
            ux_dcd_rx_function.c
            ux_dcd_rx_initialize.c
            ux_dcd_rx_initialize_complete.c
            ux_dcd_rx_interrupt_handler.c
            ux_dcd_rx_register_clear.c
            ux_dcd_rx_register_read.c
            ux_dcd_rx_register_set.c
            ux_dcd_rx_register_write.c
            ux_dcd_rx_state_change.c
            ux_dcd_rx_transfer_callback.c
            ux_dcd_rx_transfer_request.c

                                                        Added support for the Renesas RX host controller. The following files have been added:
                                                        
            ux_hcd_rx.h
            ux_hcd_rx_asynchronous_endpoint_create.c
            ux_hcd_rx_asynchronous_endpoint_destroy.c
            ux_hcd_rx_asynch_queue_process.c
            ux_hcd_rx_asynch_queue_process_bemp.c
            ux_hcd_rx_asynch_queue_process_brdy.c
            ux_hcd_rx_asynch_queue_process_nrdy.c
            ux_hcd_rx_asynch_queue_process_sign.c
            ux_hcd_rx_asynch_schedule.c
            ux_hcd_rx_buffer_empty_interrupt.c
            ux_hcd_rx_buffer_notready_interrupt.c
            ux_hcd_rx_buffer_read.c
            ux_hcd_rx_buffer_ready_interrupt.c
            ux_hcd_rx_buffer_write.c
            ux_hcd_rx_bulk_endpoint_create.c
            ux_hcd_rx_bulk_int_td_add.c
            ux_hcd_rx_controller_disable.c
            ux_hcd_rx_control_endpoint_create.c
            ux_hcd_rx_control_td_add.c
            ux_hcd_rx_contrxl_td_add.c
            ux_hcd_rx_current_endpoint_change.c
            ux_hcd_rx_data_buffer_size.c
            ux_hcd_rx_ed_obtain.c
            ux_hcd_rx_ed_td_clean.c
            ux_hcd_rx_endpoint_nak_set.c
            ux_hcd_rx_endpoint_reset.c
            ux_hcd_rx_entry.c
            ux_hcd_rx_fifoc_write.c
            ux_hcd_rx_fifod_write.c
            ux_hcd_rx_fifo_port_change.c
            ux_hcd_rx_fifo_read.c
            ux_hcd_rx_frame_number_get.c
            ux_hcd_rx_frame_number_set.c
            ux_hcd_rx_initialize.c
            ux_hcd_rx_interrupt_endpoint_create.c
            ux_hcd_rx_interrupt_handler.c
            ux_hcd_rx_isochronous_endpoint_create.c
            ux_hcd_rx_isochronous_td_obtain.c
            ux_hcd_rx_iso_queue_process.c
            ux_hcd_rx_iso_schedule.c
            ux_hcd_rx_least_traffic_list_get.c
            ux_hcd_rx_periodic_endpoint_destroy.c
            ux_hcd_rx_periodic_schedule.c
            ux_hcd_rx_periodic_tree_create.c
            ux_hcd_rx_port_disable.c
            ux_hcd_rx_port_enable.c
            ux_hcd_rx_port_reset.c
            ux_hcd_rx_port_resume.c
            ux_hcd_rx_port_status_get.c
            ux_hcd_rx_port_suspend.c
            ux_hcd_rx_power_down_port.c
            ux_hcd_rx_power_on_port.c
            ux_hcd_rx_power_root_hubs.c
            ux_hcd_rx_register_clear.c
            ux_hcd_rx_register_read.c
            ux_hcd_rx_register_set.c
            ux_hcd_rx_register_write.c
            ux_hcd_rx_regular_td_obtain.c
            ux_hcd_rx_request_bulk_transfer.c
            ux_hcd_rx_request_control_transfer.c
            ux_hcd_rx_request_interupt_transfer.c
            ux_hcd_rx_request_isochronous_transfer.c
            ux_hcd_rx_request_transfer.c
            ux_hcd_rx_td_add.c
            ux_hcd_rx_transfer_abort.c

                                                        Added support for the Renesas Spear320 host controller. The following files have been added:

            ux_dcd_spear.h
            ux_dcd_spear_address_set.c
            ux_dcd_spear_endpoint_create.c
            ux_dcd_spear_endpoint_destroy.c
            ux_dcd_spear_endpoint_reset.c
            ux_dcd_spear_endpoint_stall.c
            ux_dcd_spear_endpoint_status.c
            ux_dcd_spear_fifo_address_get.c
            ux_dcd_spear_fifo_read.c
            ux_dcd_spear_fifo_write.c
            ux_dcd_spear_frame_number_get.c
            ux_dcd_spear_function.c
            ux_dcd_spear_initialize.c
            ux_dcd_spear_initialize_complete.c
            ux_dcd_spear_interrupt_handler.c
            ux_dcd_spear_register_clear.c
            ux_dcd_spear_register_read.c
            ux_dcd_spear_register_set.c
            ux_dcd_spear_register_write.c
            ux_dcd_spear_state_change.c
            ux_dcd_spear_transfer_callback.c
            ux_dcd_spear_transfer_request.c

                                                        Added support for the host Generic Serial Class . The following files have been added:

            ux_host_class_gser.h
            ux_host_class_gser_activate.c
            ux_host_class_gser_command.c
            ux_host_class_gser_configure.c
            ux_host_class_gser_deactivate.c
            ux_host_class_gser_endpoints_get.c
            ux_host_class_gser_entry.c
            ux_host_class_gser_ioctl.c
            ux_host_class_gser_read.c
            ux_host_class_gser_reception_callback.c
            ux_host_class_gser_reception_start.c
            ux_host_class_gser_reception_stop.c
            ux_host_class_gser_write.c
            
            ux_dcd_stm32_interrupt_handler.c            Fixed a problem in the RESET signal treatment
            ux_dcd_stm32_transfer_callback.c            Fixed the SETUP OUT request code to include proper packet/buffer calculation.
            ux_dcd_stm32.h                              Added support for HS device side
            ux_dcd_stm32_initialize.c                   "              "               "

            ux_hcd_stm32_initialize_fscore.c            Added support for the STM32 FS2 support in Full Speed
            ux_hcd_stm32_initialize_hscore.c            Added support for the STM32 FS2 support in High Speed
            ux_hcd_stm32.h                              "                      "                            "
            ux_hcd_stm32_asynch_queue_process.c         Fixed problem with non-ULONG aligned buffers
            
                                                        Changed the structure name UX_STM32_ED into UX_HCD_STM32_ED the following files were modified:

            ux_hcd_stm32.h
            ux_hcd_stm32_asynchronous_endpoint_create.c
            ux_hcd_stm32_asynchronous_endpoint_destroy.c
            ux_hcd_stm32_asynch_queue_process.c
            ux_hcd_stm32_asynch_schedule.c
            ux_hcd_stm32_channel_halt.c
            ux_hcd_stm32_controller_disable.c
            ux_hcd_stm32_delay.c
            ux_hcd_stm32_ed_obtain.c
            ux_hcd_stm32_ed_td_clean.c
            ux_hcd_stm32_endpoint_reset.c
            ux_hcd_stm32_entry.c
            ux_hcd_stm32_frame_number_get.c
            ux_hcd_stm32_frame_number_set.c
            ux_hcd_stm32_initialize_fscore.c
            ux_hcd_stm32_initialize_hscore.c
            ux_hcd_stm32_interrupt_endpoint_create.c
            ux_hcd_stm32_interrupt_handler.c
            ux_hcd_stm32_isochronous_endpoint_create.c
            ux_hcd_stm32_isochronous_td_obtain.c
            ux_hcd_stm32_iso_queue_process.c
            ux_hcd_stm32_iso_schedule.c
            ux_hcd_stm32_least_traffic_list_get.c
            ux_hcd_stm32_periodic_endpoint_destroy.c
            ux_hcd_stm32_periodic_schedule.c
            ux_hcd_stm32_periodic_tree_create.c
            ux_hcd_stm32_port_disable.c
            ux_hcd_stm32_port_enable.c
            ux_hcd_stm32_port_reset.c
            ux_hcd_stm32_port_resume.c
            ux_hcd_stm32_port_status_get.c
            ux_hcd_stm32_port_suspend.c
            ux_hcd_stm32_power_down_port.c
            ux_hcd_stm32_power_on_port.c
            ux_hcd_stm32_register_clear.c
            ux_hcd_stm32_register_read.c
            ux_hcd_stm32_register_set.c
            ux_hcd_stm32_register_write.c
            ux_hcd_stm32_regular_td_obtain.c
            ux_hcd_stm32_request_bulk_transfer.c
            ux_hcd_stm32_request_control_transfer.c
            ux_hcd_stm32_request_interupt_transfer.c
            ux_hcd_stm32_request_isochronous_transfer.c
            ux_hcd_stm32_request_transfer.c
            ux_hcd_stm32_td_schedule.c
            ux_hcd_stm32_transfer_abort.c
                                                        

            ux_device_class_cdc_acm_control_request.c   Removed the lineCodingZero global variable
            ux_device_class_cdc_acm_write.c             Fixed function name
          
            ux_device_class_storage_csw_send.c          Changed the CSW synchronization with STALL status - 
                                                        synchronization is now happening in the ux_device_stack_transfer_request function


            Changed the deactivation mechanism to host classes. The following files were modified:

            ux_host_class_asix_deactivate.c
            ux_host_class_audio_deactivate.c
            ux_host_class_cdc_acm_deactivate.c
            ux_host_class_hid_deactivate.c
            ux_host_class_hub_deactivate.c
            ux_host_class_pima_deactivate.c
            ux_host_class_printer_deactivate.c
            ux_host_class_prolific_deactivate.c
            ux_host_class_storage_deactivate.c
            ux_host_class_swar_deactivate.c

            
            Added a mounting state for the class to synchronize between the composite classes of the CDC
            The following files were modified or added:
            ux_host_class_cdc_acm_activate.c
            ux_host_class_cdc_acm_ioctl.c               
            ux_host_class_prolific_activate.c
            ux_host_class_prolific_ioctl.c
            ux_host_class_storage_activate.c

            ux_host_class_hid_descriptor_parse.c        Fixed problem when parsing HID descriptor to remember HID interface
            ux_host_class_prolific_activate.c           Fixed problem during activation of the prolific class
            ux_host_class_storage_transport_bo.c        Added support for large SCSI read requests/write to make the number of sector read
                                                        irrespective of the controller memory capacity
            ux_hcd_ehci.h                               Added support for dynamic frame list
            ux_hcd_ehci_initialize.c                    "               "                  "

            ux_hcd_sh2a_port_reset.c                    Added support for SH7670 and SH7263
            ux_hcd_sh2a_interrupt_handler.c             "               "                  "
            ux_hcd_sh2a.h                               "               "                  "
            
             
            ux_dcd_lpc3180_interrupt_handler.c          Removed the variable lpc3180_endpoint_int_status
            ux_dcd_at91hs_endpoint_stall.c              Removed the variable at91hs_register
            
            ux_device_class_rndis_bulkin_thread.c       Fixed missing header size in the length of the RNDIS packets to be send/received
            ux_device_class_rndis_bulkout_thread.c      Fixed missing header size in the length of the RNDIS packets to be send/received
            
            ux_dcd_ti18x_endpoint_create.c              Changed strategy for flow control on the AM1808            
            ux_dcd_ti18x_transfer_callback.c            "                    "                        "
            ux_dcd_ti18x_transfer_request.c             "                    "                        "
            ux_dcd_ti18x_fifo_read.c                    Fixed problem in FIFO reading that was leading to overflow
            ux_dcd_ti18x_endpoint_reset.c               Fixed problem in resetting endpoint after STALL condition
            ux_dcd_ti18x_interrupt_handler.c            Changed strategy for high speed negotiation
            ux_dcd_ti18x_initialize                     Added support for high speed in AM1808
            
            ux_device_stack_transfer_request.c          Changed strategy for waiting for a STALLed endpoint to be reset
            ux_device_stack_alternate_setting_set.c     Fixed problem when changing alternate setting where endpoints resources were not
                                                        properly cleaned

            ux_host_stack_interface_setting_select.c    Fixed problem on the host stack about changing the alternate setting
            ux_host_stack_interface_set.c               Interface and alternate setting values were in reverse order

            ux_host_class_storage_media_mount.c         Fixed possible endianness issue when parsing the partition/boot sector

            ux_host_class_hub_port_change_connection_process.c 
                                                        Fixed an issue with device removal
            ux_*.c                                      Modified comment(s).
            ux_*.h                                      Modified comment(s).
                        

07/01/2011  USBX generic code version 5.5. This release includes the following 
            modifications:

            ux_hcd_ehci_power_root_hubs.c               Changes power sequence to preserve EHCI port register in case a non 100% EHCI
                                                        controller is used and has a previous setting in the PORT_SC register.
            ux_hcd_ehci_interrupt_endpoint_create.c     Fixed issues with 1ms interrupt pipes
            ux_hcd_ehci_interrupt_endpoint_destroy.c
            ux_hcd_ehci_request_bulk_transfer.c         Fixed support for ZLP bulk requests                                                
                                                        
            ux_host_class_prolific_activate.c           Added better support for Prolific PL2302 chips, differentiating between type 0,1 and HX.
            ux_host_class_prolific_setup.c
            ux_host_class_prolific_activate.c
            ux_host_class_prolific_ioctl.c
            ux_host_class_prolific_command.c
            ux_host_class_prolific.h
            
            ux_host_class_hid_keyboard.h                Fixed support for USB keyboard without numeric keypads
            ux_host_class_hid_keyboard_activate.c
            ux_host_class_hid_keyboard_callback.c

            ux_host_class_hid_report_get.c              Fixed GET_REPORT when dealing with multiple reports.
            ux_host_class_hid_report_set.c            
            
            ux_host_class_asix_reception_callback.c     Ensure proper alignment for prepend ptr
            ux_host_class_asix_thread.c                 "             "              "

                                                        Added support for NETX 5.3 and above. The following files have been added:
            ux_device_class_rndis.h
            ux_device_class_rndis_activate.c
            ux_device_class_rndis_deactivate.c
            ux_device_class_rndis_bulkout_thread.c
            ux_device_class_rndis_write.c
            
            ux_device_class_cdc_ecm.h
            ux_device_class_cdc_ecm_activate.c
            ux_device_class_cdc_ecm_deactivate.c
            ux_device_class_cdc_ecm_bulkout_thread.c
            ux_device_class_cdc_ecm_write.c
                        
            ux_host_class_asix_write.c
            ux_host_class_asix_activate.c
            ux_host_class_asix_deactivate.c
            ux_host_class_asix_setup.c
            ux_host_class_asix_interrupt_notification.c
            ux_host_class_asix_read.c
            ux_host_class_asix.h
            
                                                        Added files for NETX 5.3 and above support
            ux_network_driver.c
            ux_network_driver.h                                                        

            ux_host_class_hub.h                         Provide protection in hub class for removal/insertion within one hub polling frequency
            ux_host_class_hub_port_change_connection_process.c
            ux_host_class_hub_descriptor_get.c          Added the HUB descriptor for stricter HUB GET_DESCRIPTOR requests
            
                                                        Renamed the device class CDC to CDC_ACM
                                                        Files affected
            ux_device_class_cdc.h
            ux_device_class_cdc_activate.c
            ux_device_class_cdc_control_complete.c
            ux_device_class_cdc_control_request.c
            ux_device_class_cdc_deactivate.c
            ux_device_class_cdc_entry.c
            ux_device_class_cdc_read.c
            ux_device_class_cdc_thread.c
            ux_device_class_cdc_write.c

            ux_hcd_sh2a.h                               Fixed ZLP and some scheduling bugs in the SH2 driver
            ux_hcd_sh2a_asynch_schedule.c
            ux_hcd_sh2a_request_bulk_transfer.c            
            
            
            ux_hcd_stm32.h                              Fixed several bugs in the STM32 driver
            ux_hcd_stm32_asynch_queue_process.c
            ux_hcd_stm32_entry.c
            ux_hcd_stm32_interrupt_handler.c
            ux_hcd_stm32_request_bulk_transfer.c
            ux_hcd_stm32_td_schedule.c

                                                        Added support for TILM device controller 
                                                        Files added:
            ux_dcd_tilm3.h
            ux_dcd_tilm3_address_set.c
            ux_dcd_tilm3_endpoint_create.c
            ux_dcd_tilm3_endpoint_destroy.c
            ux_dcd_tilm3_endpoint_reset.c
            ux_dcd_tilm3_endpoint_stall.c
            ux_dcd_tilm3_endpoint_status.c
            ux_dcd_tilm3_fifo_flush.c
            ux_dcd_tilm3_fifo_read.c
            ux_dcd_tilm3_fifo_write.c
            ux_dcd_tilm3_frame_number_get.c
            ux_dcd_tilm3_function.c
            ux_dcd_tilm3_initialize.c
            ux_dcd_tilm3_initialize_complete.c
            ux_dcd_tilm3_interrupt_handler.c
            ux_dcd_tilm3_register_clear.c
            ux_dcd_tilm3_register_read.c
            ux_dcd_tilm3_register_set.c
            ux_dcd_tilm3_register_write.c
            ux_dcd_tilm3_state_change.c
            ux_dcd_tilm3_transfer_callback.c
            ux_dcd_tilm3_transfer_request.c
                                         
                                                        Added support for TIAM180 device controller 
                                                        Files added:
                                         
            ux_dcd_ti18x.h
            ux_dcd_ti18x_address_set.c
            ux_dcd_ti18x_endpoint_create.c
            ux_dcd_ti18x_endpoint_destroy.c
            ux_dcd_ti18x_endpoint_reset.c
            ux_dcd_ti18x_endpoint_stall.c
            ux_dcd_ti18x_endpoint_status.c
            ux_dcd_ti18x_fifo_flush.c
            ux_dcd_ti18x_fifo_read.c
            ux_dcd_ti18x_fifo_write.c
            ux_dcd_ti18x_frame_number_get.c
            ux_dcd_ti18x_function.c
            ux_dcd_ti18x_initialize.c
            ux_dcd_ti18x_initialize_complete.c
            ux_dcd_ti18x_interrupt_handler.c
            ux_dcd_ti18x_register_clear.c
            ux_dcd_ti18x_register_read.c
            ux_dcd_ti18x_register_set.c
            ux_dcd_ti18x_register_write.c
            ux_dcd_ti18x_state_change.c
            ux_dcd_ti18x_transfer_callback.c
            ux_dcd_ti18x_transfer_request.c
                                                                   

                                                        Added support for the Sierra Wireless Airprime host class
                                                        Files added:
                                         
            ux_host_class_swar.h
            ux_host_class_swar_activate.c
            ux_host_class_swar_configure.c
            ux_host_class_swar_deactivate.c
            ux_host_class_swar_endpoints_get.c
            ux_host_class_swar_entry.c
            ux_host_class_swar_ioctl.c
            ux_host_class_swar_read.c
            ux_host_class_swar_reception_callback.c
            ux_host_class_swar_reception_start.c
            ux_host_class_swar_reception_stop.c
            ux_host_class_swar_write.c


11/16/2010  USBX generic code version 5.4. This release includes the following 
            modifications:

            ux_user.h                                   Added UX_DEVICE_CLASS_CDC_ECM_NX_PKPOOL_ENTRIES definition for CDC ECM class
            ux_device_class_cdc_ecm.h                   Allow for user.h configuration variable.
            ux_device_class_cdc_ecm_bulkin_thread.c     Corrected a flaw in Zero Length Packet condition for CDC/RNDIS classes.
            ux_device_class_rndis_bulkin_thread.c
            demo_usbx_stm32_dcd_cdc_ecm.c               Added an example for CDC ECM for STM32.
            ux_api.h                                    Added support for CDC-ECM TraceX values


            Added support for CDC ECM. The following files have been added:       

            ux_device_class_cdc_ecm.h
            ux_device_class_cdc_ecm_activate.c
            ux_device_class_cdc_ecm_bulkin_thread.c
            ux_device_class_cdc_ecm_bulkout_thread.c
            ux_device_class_cdc_ecm_change.c
            ux_device_class_cdc_ecm_control_request.c
            ux_device_class_cdc_ecm_deactivate.c
            ux_device_class_cdc_ecm_driver_entry.c
            ux_device_class_cdc_ecm_entry.c
            ux_device_class_cdc_ecm_initialize.c
            ux_device_class_cdc_ecm_interrupt_thread.c
            ux_device_class_cdc_ecm_write.c
            ux_device_class_cdc_entry.c
    
            Changed RNDIS to clean endpoints when shared in multiple configuration scenario.  The following files are modified:
            ux_device_class_rndis_interrupt_thread.c    
            ux_device_class_rndis_bulkin_thread.c       
            ux_device_class_rndis_bulkout_thread.c      
            ux_device_class_rndis_activate              

            ux_device_stack_interface_set.c             Fixed a problem with multiple interfaces. 
            ux_device_stack_configuration_set.c         Changed support for composite devices by forcing a IAD descriptor to group 
                                                        interfaces. 
            ux_device_stack_class_register.c            Class registration now needs the first interface number and configuration the  
                                                        interface is attached to in addition to a IAD descriptor in the device framework.

            ux_device_stack_initialize.c                Fixed a problem with endpoint sharing when using multiple configurations
            ux_device_stack_configuration_set.c         Fixed a problem with multiple configurations. 
            ux_device_stack_control_request_process.c   Changed the way multiple interfaces are owned by the same class.
            ux_system_initialize.c                      Added name for USB CDC ECM class and new host/device controller driver names.
            ux_host_stack_endpoint_instance_delete.c    Fixed a bug when a device resource are freed but the device was not associated
                                                        to a class.
            ux_host_stack_configuration_interface_get.c Fixed a bug when scanning for non 0/0 interface index.

            ux_host_controller_stm32                    Added support for the STM32 Host controller, the following files have been added:

                                                        ux_hcd_stm32.h
                                                        ux_hcd_stm32_asynchronous_endpoint_create.c
                                                        ux_hcd_stm32_asynchronous_endpoint_destroy.c
                                                        ux_hcd_stm32_asynch_queue_process.c
                                                        ux_hcd_stm32_asynch_schedule.c
                                                        ux_hcd_stm32_channel_halt.c
                                                        ux_hcd_stm32_controller_disable.c
                                                        ux_hcd_stm32_delay.c
                                                        ux_hcd_stm32_ed_obtain.c
                                                        ux_hcd_stm32_ed_td_clean.c
                                                        ux_hcd_stm32_endpoint_reset.c
                                                        ux_hcd_stm32_entry.c
                                                        ux_hcd_stm32_frame_number_get.c
                                                        ux_hcd_stm32_frame_number_set.c
                                                        ux_hcd_stm32_initialize.c
                                                        ux_hcd_stm32_interrupt_endpoint_create.c
                                                        ux_hcd_stm32_interrupt_handler.c
                                                        ux_hcd_stm32_isochronous_endpoint_create.c
                                                        ux_hcd_stm32_isochronous_td_obtain.c
                                                        ux_hcd_stm32_iso_queue_process.c
                                                        ux_hcd_stm32_iso_schedule.c
                                                        ux_hcd_stm32_least_traffic_list_get.c
                                                        ux_hcd_stm32_periodic_endpoint_destroy.c
                                                        ux_hcd_stm32_periodic_schedule.c
                                                        ux_hcd_stm32_periodic_tree_create.c
                                                        ux_hcd_stm32_port_disable.c
                                                        ux_hcd_stm32_port_enable.c
                                                        ux_hcd_stm32_port_reset.c
                                                        ux_hcd_stm32_port_resume.c
                                                        ux_hcd_stm32_port_status_get.c
                                                        ux_hcd_stm32_port_suspend.c
                                                        ux_hcd_stm32_power_down_port.c
                                                        ux_hcd_stm32_power_on_port.c
                                                        ux_hcd_stm32_register_clear.c
                                                        ux_hcd_stm32_register_read.c
                                                        ux_hcd_stm32_register_set.c
                                                        ux_hcd_stm32_register_write.c
                                                        ux_hcd_stm32_regular_td_obtain.c
                                                        ux_hcd_stm32_request_bulk_transfer.c
                                                        ux_hcd_stm32_request_control_transfer.c
                                                        ux_hcd_stm32_request_interupt_transfer.c
                                                        ux_hcd_stm32_request_isochronous_transfer.c
                                                        ux_hcd_stm32_request_transfer.c
                                                        ux_hcd_stm32_td_schedule.c
                                                        ux_hcd_stm32_transfer_abort.c

            ux_slave_controller_stm32                   Added support for the STM32 slave controller, the following files have been added:
                                                        ux_dcd_stm32.h
                                                        ux_dcd_stm32_address_set.c
                                                        ux_dcd_stm32_delay.c
                                                        ux_dcd_stm32_endpoint_create.c
                                                        ux_dcd_stm32_endpoint_destroy.c
                                                        ux_dcd_stm32_endpoint_register_address_get.c
                                                        ux_dcd_stm32_endpoint_reset.c
                                                        ux_dcd_stm32_endpoint_stall.c
                                                        ux_dcd_stm32_endpoint_status.c
                                                        ux_dcd_stm32_fifo_flush.c
                                                        ux_dcd_stm32_fifo_read.c
                                                        ux_dcd_stm32_fifo_write.c
                                                        ux_dcd_stm32_frame_number_get.c
                                                        ux_dcd_stm32_function.c
                                                        ux_dcd_stm32_initialize.c
                                                        ux_dcd_stm32_initialize_complete.c
                                                        ux_dcd_stm32_interrupt_handler.c
                                                        ux_dcd_stm32_register_clear.c
                                                        ux_dcd_stm32_register_read.c
                                                        ux_dcd_stm32_register_set.c
                                                        ux_dcd_stm32_register_write.c
                                                        ux_dcd_stm32_state_change.c
                                                        ux_dcd_stm32_transfer_callback.c
                                                        ux_dcd_stm32_transfer_request.c

            ux_slave_controller_sh2                     Added support for SH2 device controller, The following files have been added:
                                                        ux_dcd_sh2a.h
                                                        ux_dcd_sh2a_address_set.c
                                                        ux_dcd_sh2a_buffer_empty_interrupt.c
                                                        ux_dcd_sh2a_buffer_notready_interrupt.c
                                                        ux_dcd_sh2a_buffer_read.c
                                                        ux_dcd_sh2a_buffer_ready_interrupt.c
                                                        ux_dcd_sh2a_buffer_write.c
                                                        ux_dcd_sh2a_current_endpoint_change.c
                                                        ux_dcd_sh2a_data_buffer_size.c
                                                        ux_dcd_sh2a_endpoint_create.c
                                                        ux_dcd_sh2a_endpoint_destroy.c
                                                        ux_dcd_sh2a_endpoint_nak_set.c
                                                        ux_dcd_sh2a_endpoint_reset.c
                                                        ux_dcd_sh2a_endpoint_stall.c
                                                        ux_dcd_sh2a_endpoint_status.c
                                                        ux_dcd_sh2a_fifoc_write.c
                                                        ux_dcd_sh2a_fifod_write.c
                                                        ux_dcd_sh2a_fifo_port_change.c
                                                        ux_dcd_sh2a_fifo_read.c
                                                        ux_dcd_sh2a_frame_number_get.c
                                                        ux_dcd_sh2a_function.c
                                                        ux_dcd_sh2a_initialize.c
                                                        ux_dcd_sh2a_initialize_complete.c
                                                        ux_dcd_sh2a_interrupt_handler.c
                                                        ux_dcd_sh2a_register_clear.c
                                                        ux_dcd_sh2a_register_read.c
                                                        ux_dcd_sh2a_register_set.c
                                                        ux_dcd_sh2a_register_write.c
                                                        ux_dcd_sh2a_state_change.c
                                                        ux_dcd_sh2a_transfer_callback.c
                                                        ux_dcd_sh2a_transfer_request.c


            ux_slave_controller_lpc3131                 Added support for LPC3131 device controller, The following files have been added:
                                                        ux_dcd_lpc3131.h
                                                        ux_dcd_lpc3131_address_set.c
                                                        ux_dcd_lpc3131_endpoint_address_get.c
                                                        ux_dcd_lpc3131_endpoint_create.c
                                                        ux_dcd_lpc3131_endpoint_destroy.c
                                                        ux_dcd_lpc3131_endpoint_flush.c
                                                        ux_dcd_lpc3131_endpoint_reset.c
                                                        ux_dcd_lpc3131_endpoint_stall.c
                                                        ux_dcd_lpc3131_endpoint_stall_clear.c
                                                        ux_dcd_lpc3131_endpoint_status.c
                                                        ux_dcd_lpc3131_frame_number_get.c
                                                        ux_dcd_lpc3131_function.c
                                                        ux_dcd_lpc3131_initialize.c
                                                        ux_dcd_lpc3131_initialize_complete.c
                                                        ux_dcd_lpc3131_interrupt_handler.c
                                                        ux_dcd_lpc3131_interrupt_thread.c
                                                        ux_dcd_lpc3131_qtd_get.c
                                                        ux_dcd_lpc3131_register_clear.c
                                                        ux_dcd_lpc3131_register_read.c
                                                        ux_dcd_lpc3131_register_set.c
                                                        ux_dcd_lpc3131_register_write.c
                                                        ux_dcd_lpc3131_state_change.c
                                                        ux_dcd_lpc3131_status_phase_hook.c
                                                        ux_dcd_lpc3131_transfer_abort.c
                                                        ux_dcd_lpc3131_transfer_callback.c
                                                        ux_dcd_lpc3131_transfer_request.c

            ux_otg_controller_lpc3131                   Added OTG support for the LPC3131               
                                                        ux_otg_lpc3131.h
                                                        ux_otg_lpc3131_dcd_initialize.c
                                                        ux_otg_lpc3131_dcd_interrupt_handler.c
                                                        ux_otg_lpc3131_dcd_interrupt_thread.c
                                                        ux_otg_lpc3131_dcd_srp_start.c
                                                        ux_otg_lpc3131_dcd_stop.c
                                                        ux_otg_lpc3131_function.c
                                                        ux_otg_lpc3131_hcd_initialize.c
                                                        ux_otg_lpc3131_hcd_interrupt_handler.c
                                                        ux_otg_lpc3131_hcd_stop.c
                                                        ux_otg_lpc3131_initialize.c
                                                        ux_otg_lpc3131_interrupt_handler.c
                                                        ux_otg_lpc3131_thread_entry.c
                                                        ux_otg_lpc3131_vbus_manage.c


            ux_host_class_hid_idle_get                  Fixed a bug in IDLE command
            ux_host_class_hid_idle_set                  Fixed a bug in IDLE command
            ux_host_class_hid_report_get                Fixed a endianness issue with HID reports
            ux_host_class_hid_report_set                Fixed a endianness issue with HID reports

            ux_host_class_storage_endpoints_get         Fixed an issue with storage device with wrong endpoints assignment

            ux_hcd_ehci_initialize                      Fixed a bug with certain EHCI controllers, delayed the RUN.
            ux_hcd_ehci_port_status_get                 Allowed for EHCI controllers with embedded TT.

            ux_hcd_ehci_ed_clean.c                      Fixed a problem when Virtual/Physical memory translation was used.
        
            ux_hcd_ehci_initialize.c                    Added EHCI support for LPC3131 in lpc3131 directory
            ux_hcd_ehci_interrupt_handler.c             Fixed bug in awakening root hub driver.

07/10/2009  USBX generic code version 5.3. This release includes the following 
            modifications:

            ux_api.h                                    Changed to included new memory alignment values and TraceX events and objects,
                                                        and changed timeout value for control transfers from 1 second to 5 seconds
                                                        as some devices need a bit more time to reply to the first control request.
            ux_device_class_rndis.h                     Added a mutex to protect queuing/dequeuing of packets between the application and the RNDIS xmit thread.
            ux_host_class_storage.h                     Ensure the SCSI CBW and CSW buffers are aligned on 32bit and do not rely on the compiler packing pragma
                                                        some DMA engines of certain OHCI controllers (SH7727 in particular) requires all OHCI data buffers
                                                        to be aligned on 32 bits even though OHCI does not demand it. 
            ux_dcd_at91_transfer_callback.c             Fixed missing update of actual_length field on out transmission, and added support for Control Out 
                                                        data payload in the Atmel AT91 controller.
            ux_dcd_at91_transfer_request.c              Fixed missing update of actual_length field on out transmission.
            ux_device_class_rndis_bulkin_thread.c       Added a mutex to protect queuing/dequeuing of packets between the application and the RNDIS xmit thread, and
                                                        fixed problem when dequeuing multiple NetX packets to be sent.
            ux_device_class_rndis_initialize.c          Added a mutex to protect queuing/dequeuing of packets between the application and the RNDIS xmit thread.
            ux_device_class_rndis_write.c               Added a mutex to protect queuing/dequeuing of packets between the application and the RNDIS xmit thread.
            ux_hcd_ehci_asynch_td_process.c             Update the ux_ehci_ed_first_td field with the next td to allow USB transactions of more than 16 spanning 
                                                        multiple SOFs, and only look for transfer errors if the Halt bit of the QTD is set.
            ux_hcd_ehci_interrupt_endpoint_create.c     Filter for interval 1 when we anchor on the last ed in the tree.
            ux_hcd_ehci_interrupt_endpoint_destroy.c    Check for the forward link of the QED and ensure it is not NUL before attaching the previous QED.
            ux_hcd_ehci_request_interrupt_transfer.c    Check for no QTD allocation.
            ux_hcd_ehci_transfer_abort.c                Fixed a bug when cleaning TDs after an abort.
            ux_hcd_isp1161_interrupt_endpoint_create.c  Filter for interval 1 when we anchor on the last ed in the tree.
            ux_hcd_ohci_interrupt_endpoint_create.c     Filter for interval 1 when we anchor on the last ed in the tree.
            ux_hcd_pic32_interrupt_endpoint_create.c    Filter for interval 1 when we anchor on the last ed in the tree.
            ux_hcd_sh2a_interrupt_endpoint_create.c     Filter for interval 1 when we anchor on the last ed in the tree.
            ux_host_stack_device_resources_free.c       Filter for no interface attached to a configuration before reading the current alternate setting, which 
                                                        would cause a crash in systems where reading from address 0 is illegal.
            ux_host_stack_endpoint_instance_delete.c    Filter for physical endpoint allocation when freeing device resources.                                                        
            ux_utility_memory_allocate.c                Allow safe alignment of DMA memory for controllers which do not support scatter/gather memory - the field 
                                                        UX_ENFORCE_SAFE_ALIGNMENT needs to be defined otherwise alignment defaults to the default.

            ux_hcd_isp1362                              Added support for the ISP1362 host controller, the following files have been added:

                                                            ux_hcd_isp1362.h                            
                                                            ux_hcd_isp1362_aitl_buffer_read.c
                                                            ux_hcd_isp1362_aitl_buffer_write.c
                                                            ux_hcd_isp1362_asynchronous_endpoint_create.c
                                                            ux_hcd_isp1362_asynchronous_endpoint_destroy.c
                                                            ux_hcd_isp1362_asynch_schedule.c
                                                            ux_hcd_isp1362_atl_queue_process.c
                                                            ux_hcd_isp1362_controller_disable.c
                                                            ux_hcd_isp1362_ed_obtain.c
                                                            ux_hcd_isp1362_ed_td_clean.c
                                                            ux_hcd_isp1362_endpoint_reset.c
                                                            ux_hcd_isp1362_entry.c
                                                            ux_hcd_isp1362_frame_number_get.c
                                                            ux_hcd_isp1362_frame_number_set.c
                                                            ux_hcd_isp1362_hcer_register_read.c
                                                            ux_hcd_isp1362_hcer_register_write.c
                                                            ux_hcd_isp1362_hcor_register_read.c
                                                            ux_hcd_isp1362_hcor_register_write.c
                                                            ux_hcd_isp1362_initialize.c
                                                            ux_hcd_isp1362_interrupt_endpoint_create.c
                                                            ux_hcd_isp1362_interrupt_endpoint_destroy.c
                                                            ux_hcd_isp1362_interrupt_handler.c
                                                            ux_hcd_isp1362_isochronous_endpoint_create.c
                                                            ux_hcd_isp1362_isochronous_endpoint_destroy.c
                                                            ux_hcd_isp1362_isochronous_td_obtain.c
                                                            ux_hcd_isp1362_iso_queue_process.c
                                                            ux_hcd_isp1362_iso_schedule.c
                                                            ux_hcd_isp1362_itl_queue_process.c
                                                            ux_hcd_isp1362_periodic_schedule.c
                                                            ux_hcd_isp1362_port_disable.c
                                                            ux_hcd_isp1362_port_enable.c
                                                            ux_hcd_isp1362_port_reset.c
                                                            ux_hcd_isp1362_port_resume.c
                                                            ux_hcd_isp1362_port_status_get.c
                                                            ux_hcd_isp1362_port_suspend.c
                                                            ux_hcd_isp1362_power_down_port.c
                                                            ux_hcd_isp1362_power_on_port.c
                                                            ux_hcd_isp1362_power_root_hubs.c
                                                            ux_hcd_isp1362_ptd_add.c
                                                            ux_hcd_isp1362_regular_td_obtain.c
                                                            ux_hcd_isp1362_request_bulk_transfer.c
                                                            ux_hcd_isp1362_request_control_transfer.c
                                                            ux_hcd_isp1362_request_interupt_transfer.c
                                                            ux_hcd_isp1362_request_isochronous_transfer.c
                                                            ux_hcd_isp1362_request_transfer.c
                                                            ux_hcd_isp1362_transfer_abort.c
                                                            
            mcf5445x                                    Added support for Coldfire MCF5445x with a special initialize file in the usbx\usbx_custom\mcf5445x directory
            ux_*.c                                      Modified comment(s) and added trace support.
            ux_*.h                                      Modified comment(s) and added trace support.
               
    
10/25/2008  USBX generic code version 5.2. This release includes the following 
            modifications:

            ux_host_class_storage_activate.c            Changed the mechanism for callback upon
            ux_host_class_prolific_activate.c           Device insertion/extraction.
            ux_host_class_pima_activate.c               Now, the class and the instance are passed
            ux_host_class_hub_activate.c                back to the application if the callback function
            ux_host_class_hid_activate.c                is registered.
            ux_host_class_cdc_acm_activate.c            All the files below have been modified:
            ux_host_class_audio_activate.c              "                 "                      "
            ux_host_class_asix_activate.c          
            ux_host_class_storage_deactivate.c          
            ux_host_class_prolific_deactivate.c          
            ux_host_class_pima_deactivate.c          
            ux_host_class_hub_deactivate.c          
            ux_host_class_hid_deactivate.c          
            ux_host_class_cdc_acm_deactivate.c          
            ux_host_class_audio_deactivate.c          
            ux_host_class_asix_deactivate.c          
            ux_host_stack_device_remove.c
            ux_host_stack_class_device_scan.c
            ux_host_stack_class_interface.c             "                 "                      "

            ux_host_class_hid_mouse_position_get.c      Added protection for instance verification
            ux_host_class_hid_mouse_buttons_get.c       "                 "                      "
            ux_host_class_hid_keyboard_key_get.c        "                 "                      "
            ux_host_class_hid_remote_control_usage_get.c"                 "                      "
            ux_host_class_hid_remote_control.h          "                 "                      "

            ux_device_stack_transfer_request.c          Ignore test for ENDPOINT_HALT if on a control endpoint
            ux_device_stack_control_request_process.c   Keep the Interface target command inside the device stack and do not forward to the class(es).
            
            ux_device_stack_configuration_get.c         Data payload now goes through the ux_device_stack_transfer_request function.
            ux_device_stack_get_status.c                Data payload now goes through the ux_device_stack_transfer_request function.
            ux_dcd_lpc3180_endpoint_stall_clear.c       Remove check for transfer pending when clearing the STALL condition.
            ux_dcd_lpc3180_endpoint_stall.c             Fixed a bug when setting STALL for non control endpoint.            
            ux_dcd_lpc3180_endpoint_transfer_callback.c Remove STALL flag for Control IN and Control OUT endpoints upon receiving a SETUP transaction
            ux_device_class_storage_thread.c            Check for exact CBW length and STALL Bulk In/Out endpoints if wrong length.
                                                        STALL Bulk In/Out endpoints if CBW header does not have the right signature.
            ux_device_class_storage_write.c             Modified to support media change
            ux_device_class_storage_format.c            Modified to support media change
            ux_device_class_storage_mode_select.c       Modified to support media change
            ux_device_class_storage_inquiry.c           Modified to support media change
            ux_device_class_storage_read.c              Modified to support media change
            ux_device_class_storage_request_sense.c     Modified to support media change
            ux_device_class_storage_test_ready.c        Modified to support media change
            ux_device_class_storage_read_capacity.c     Modified to support media change
            ux_device_class_storage_prevent_allow_media_removal.c               Modified to support media change
            ux_device_class_storage_mode_sense.c        Modified to support media change
            ux_device_class_storage_csw_send.c          Modified to support media change
            ux_device_class_storage.h                   Modified to support media change
            

            ux_host_class_storage_activate.c            Allocate the storage instance from CACHE_SAFE memory to ensure the SCSI
                                                        CSW buffer is in a cache safe memory region.
                                                                    
            ux_api.h                                    Removed class structures back into their own specific .h files
                                                        to improve readability, all host classes .h files have also been modified
                                                        accordingly.
            ux_user.h                                   Added several configurable parameters for memory constraint environment like PIC32
            us_port.h                                   Like above, also changed the USBX thread priorities to 1 for HCD and DCD and 2 for 
                                                        the enumeration thread and other classes. Changed the string UX_SYSTEM_HOST_INIT to UX_SYSTEM_INIT
            ux_system_initialize.c                      Changed the string UX_SYSTEM_HOST_INIT to UX_SYSTEM_INIT
            ux_host_class_hub_activate                  Change the hub instance state to activated before starting the interrupt pipe.
            ux_hcd_ehci_asynch_td_process.c             Properly release the last TD when an error occur during the transfer
            ux_hcd_ehci_done_queue_process.c            Discovered a bug when parsing the interrupt tree in search for the range of frame
                                                        entries to scan. The algorithm is now simpler and all the entries are parsed.
            ux_hcd_isp1161_least_traffic_list_get.c     When looking for the list with least traffic, ignore the static EDs.
            ux_hcd_ohci_initialize.c                    Force the periodic start default value of the HC_PERIODIC_START register.
                                                        Some OHCI controllers needs this register to be set manually, others default
                                                        to some value upon reset.
            ux_hcd_ehci_asynchronous_endpoint_create.c  Bug found when setting the cap0 register of the ED. If the endpoint is a control endpoint,
                                                        the QH-CEF bit must be set.         
            ux_hcd_sh2a                                 Added support for variants of the SH2A USB host controller (SH7670 and SH7263)
                                                        Files added: 
                                                            ux_hcd_sh2a.h
                                                            ux_hcd_sh2a_asynchronous_endpoint_create.c
                                                            ux_hcd_sh2a_asynchronous_endpoint_destroy.c
                                                            ux_hcd_sh2a_asynch_queue_process.c
                                                            ux_hcd_sh2a_asynch_queue_process_bemp.c
                                                            ux_hcd_sh2a_asynch_queue_process_brdy.c
                                                            ux_hcd_sh2a_asynch_queue_process_nrdy.c
                                                            ux_hcd_sh2a_asynch_queue_process_sign.c
                                                            ux_hcd_sh2a_asynch_schedule.c
                                                            ux_hcd_sh2a_buffer_empty_interrupt.c
                                                            ux_hcd_sh2a_buffer_notready_interrupt.c
                                                            ux_hcd_sh2a_buffer_read.c
                                                            ux_hcd_sh2a_buffer_ready_interrupt.c
                                                            ux_hcd_sh2a_buffer_write.c
                                                            ux_hcd_sh2a_bulk_endpoint_create.c
                                                            ux_hcd_sh2a_bulk_int_td_add.c
                                                            ux_hcd_sh2a_controller_disable.c
                                                            ux_hcd_sh2a_control_endpoint_create.c
                                                            ux_hcd_sh2a_control_td_add.c
                                                            ux_hcd_sh2a_current_endpoint_change.c
                                                            ux_hcd_sh2a_data_buffer_size.c
                                                            ux_hcd_sh2a_ed_obtain.c
                                                            ux_hcd_sh2a_ed_td_clean.c
                                                            ux_hcd_sh2a_endpoint_nak_set.c
                                                            ux_hcd_sh2a_endpoint_reset.c
                                                            ux_hcd_sh2a_entry.c
                                                            ux_hcd_sh2a_fifoc_write.c
                                                            ux_hcd_sh2a_fifod_write.c
                                                            ux_hcd_sh2a_fifo_port_change.c
                                                            ux_hcd_sh2a_fifo_read.c
                                                            ux_hcd_sh2a_fifo_size_get.c
                                                            ux_hcd_sh2a_frame_number_get.c
                                                            ux_hcd_sh2a_frame_number_set.c
                                                            ux_hcd_sh2a_initialize.c
                                                            ux_hcd_sh2a_interrupt_endpoint_create.c
                                                            ux_hcd_sh2a_interrupt_handler.c
                                                            ux_hcd_sh2a_isochronous_endpoint_create.c
                                                            ux_hcd_sh2a_isochronous_td_obtain.c
                                                            ux_hcd_sh2a_iso_queue_process.c
                                                            ux_hcd_sh2a_iso_schedule.c
                                                            ux_hcd_sh2a_least_traffic_list_get.c
                                                            ux_hcd_sh2a_periodic_endpoint_destroy.c
                                                            ux_hcd_sh2a_periodic_schedule.c
                                                            ux_hcd_sh2a_periodic_tree_create.c
                                                            ux_hcd_sh2a_port_disable.c
                                                            ux_hcd_sh2a_port_enable.c
                                                            ux_hcd_sh2a_port_reset.c
                                                            ux_hcd_sh2a_port_resume.c
                                                            ux_hcd_sh2a_port_status_get.c
                                                            ux_hcd_sh2a_port_suspend.c
                                                            ux_hcd_sh2a_power_down_port.c
                                                            ux_hcd_sh2a_power_on_port.c
                                                            ux_hcd_sh2a_power_root_hubs.c
                                                            ux_hcd_sh2a_register_clear.c
                                                            ux_hcd_sh2a_register_read.c
                                                            ux_hcd_sh2a_register_set.c
                                                            ux_hcd_sh2a_register_write.c
                                                            ux_hcd_sh2a_regular_td_obtain.c
                                                            ux_hcd_sh2a_request_bulk_transfer.c
                                                            ux_hcd_sh2a_request_control_transfer.c
                                                            ux_hcd_sh2a_request_interupt_transfer.c
                                                            ux_hcd_sh2a_request_isochronous_transfer.c
                                                            ux_hcd_sh2a_request_transfer.c
                                                            ux_hcd_sh2a_td_add.c
                                                            ux_hcd_sh2a_transfer_abort.c

            ux_hcd_pic32                                Added support for the PIC32 host controller
                                                        Files added: 
                                                            ux_hcd_pic32.h
                                                            ux_hcd_pic32_asynchronous_endpoint_create.c
                                                            ux_hcd_pic32_asynchronous_endpoint_destroy.c
                                                            ux_hcd_pic32_asynch_queue_process.c
                                                            ux_hcd_pic32_asynch_schedule.c
                                                            ux_hcd_pic32_bus_error_process.c
                                                            ux_hcd_pic32_controller_disable.c
                                                            ux_hcd_pic32_ed_obtain.c
                                                            ux_hcd_pic32_ed_td_clean.c
                                                            ux_hcd_pic32_endpoint_reset.c
                                                            ux_hcd_pic32_entry.c
                                                            ux_hcd_pic32_frame_number_get.c
                                                            ux_hcd_pic32_frame_number_set.c
                                                            ux_hcd_pic32_initialize.c
                                                            ux_hcd_pic32_interrupt_endpoint_create.c
                                                            ux_hcd_pic32_interrupt_handler.c
                                                            ux_hcd_pic32_isochronous_endpoint_create.c
                                                            ux_hcd_pic32_isochronous_td_obtain.c
                                                            ux_hcd_pic32_iso_queue_process.c
                                                            ux_hcd_pic32_iso_schedule.c
                                                            ux_hcd_pic32_least_traffic_list_get.c
                                                            ux_hcd_pic32_periodic_endpoint_destroy.c
                                                            ux_hcd_pic32_periodic_schedule.c
                                                            ux_hcd_pic32_periodic_tree_create.c
                                                            ux_hcd_pic32_port_disable.c
                                                            ux_hcd_pic32_port_enable.c
                                                            ux_hcd_pic32_port_reset.c
                                                            ux_hcd_pic32_port_resume.c
                                                            ux_hcd_pic32_port_status_get.c
                                                            ux_hcd_pic32_port_suspend.c
                                                            ux_hcd_pic32_power_down_port.c
                                                            ux_hcd_pic32_power_on_port.c
                                                            ux_hcd_pic32_register_clear.c
                                                            ux_hcd_pic32_register_read.c
                                                            ux_hcd_pic32_register_set.c
                                                            ux_hcd_pic32_register_write.c
                                                            ux_hcd_pic32_regular_td_obtain.c
                                                            ux_hcd_pic32_request_bulk_transfer.c
                                                            ux_hcd_pic32_request_control_transfer.c
                                                            ux_hcd_pic32_request_interupt_transfer.c
                                                            ux_hcd_pic32_request_isochronous_transfer.c
                                                            ux_hcd_pic32_request_transfer.c
                                                            ux_hcd_pic32_td_schedule.c
                                                            ux_hcd_pic32_transfer_abort.c
                
            ux_device_class_rndis                       Added support for RNDIS                                                                         
                                                        Files added: 
                                                            ux_device_class_rndis.h
                                                            ux_device_class_rndis_activate.c
                                                            ux_device_class_rndis_bulkin_thread.c
                                                            ux_device_class_rndis_bulkout_thread.c
                                                            ux_device_class_rndis_bulkxx_thread.c
                                                            ux_device_class_rndis_control_request.c
                                                            ux_device_class_rndis_deactivate.c
                                                            ux_device_class_rndis_driver_entry.c
                                                            ux_device_class_rndis_entry.c
                                                            ux_device_class_rndis_initialize.c
                                                            ux_device_class_rndis_interrupt_thread.c
                                                            ux_device_class_rndis_msg_initialize.c
                                                            ux_device_class_rndis_msg_keep_alive.c
                                                            ux_device_class_rndis_msg_query.c
                                                            ux_device_class_rndis_msg_reset.c
                                                            ux_device_class_rndis_msg_set.c
                                                            ux_device_class_rndis_write.c
            
            ux_device_stack_initialize.c                Change the endpoint payload memory to use CACHE_SAFE memory.
            ux_utility_short_get.c                      Change the return type to ULONG
            ux_utility_short_get_big_endian.c           Like above.
            ux_device_stack_interface_start.c           Changed the calling parameter structure to the device classes by setting the interface value
                                                        and not the instance with the device interface.
                                                        This changed all the device class activate and deactivate functions
            ux_pictbridge_element_to_decimal.c          Found a bug in XML object decimal conversion    
            
            ux_custom\sh7727                            Addition of the OHCI modified files for SH7727 OHCI limitations.                                                    
                                                         
            udemo_usbx_lpc2468_dcd_rndis.c              Example for RNDIS driver on LPC2468
            demo_usbx_sh2a_7263.c                       SH7263 host example
            demo_usbx_pic32_host_storage_printer.c      PIC32 storage and printer behind hub example
            demo_usbx_pic32_host_keyboard.c             PIC32 low speed example
            demo_usbx_pic32_host_storage.c              PIC32 storage example
                                                                

07/04/2008  USBX generic code version 5.1. This release includes the following 
            modifications:
        
            ux_api.h                                    Added constants, updated typedefs, and updated prototypes.
            ux_dcd_sim_slave_endpoint_create.c          Added logic to check for endpoint 0 and if found, make it ready 
                                                        for transactions.
            ux_dcd_sim_slave_transfer_request.c         Added code to set the ED to transfer status.
            ux_device_class_*_activate.c                Changed the registration and initialization of device classes.
            ux_device_class_*_initialize.c              Changed the registration and initialization of device classes.
            ux_device_class_cdc.h                       Updated CDC parameter typedef, removed unused function prototypes,
                                                        and added new function prototypes.
            ux_device_class_cdc_activate.c              Added logic to call application's activate function if present.
            ux_device_class_cdc_deactivate.c            Added logic to call application's deactivate function if present.
            ux_device_class_cdc_control_request.c       Removed setup of complete function callback.
            ux_device_class_dpump.h                     Added data pump class structure, and added read/write APIs.
            ux_device_class_dpump_activate.c            Added logic to call application's activate function if present.
            ux_device_class_dpump_deactivate.c          Added logic to call application's deactivate function if present.
            ux_device_class_storage.h                   Added new read capacity response constants.
            ux_device_class_storage_inquiry.c           Changed setting for data format bit.
            ux_device_class_storage_mode_sense.c        Replaced sending inquiry response with read capacity response buffer.
            ux_device_class_storage_read_format_capacity.c        
                                                        Replaced sending inquiry response with read capacity response buffer.
            ux_device_stack_class_register.c            Changed the registration and initialization of device classes
                                                        and fixed a memory resource release problem.
            ux_device_stack_control_request_process.c   Removed the verification for length in control_request_process 
                                                        due to a new mechanism to allow control request with OUT data 
                                                        payload.
            ux_device_stack_disconnect.c                Changed the registration and initialization of device classes.
            ux_hcd_ehci_interrupt_endpoint_create.c     Changed frequency check and changed the value of NAK counter in EHCI 
                                                        interrupt endpoints.
            ux_hcd_ehci_interrupt_handler.c             Changed the mechanism to report root hub port changes. There is 
                                                        now a bit per root hub port to indicate device insertion/extraction.
            ux_hcd_isp1161_asynch_schedule.c            Added check for NULL pointer in the scheduling loop.
            ux_hcd_isp1161_asynchronous_endpoint_destroy.c
                                                        Added logic to update the current ED if current ED is the one being 
                                                        destroyed.
            ux_hcd_isp1161_interrupt_handler.c          Changed the mechanism to report root hub port changes. There is 
                                                        now a bit per root hub port to indicate device insertion/extraction.
            ux_hcd_ohci_done_queue_process.c            Fixed a problem in OHCI when a buffer underrun is detected with a 
                                                        callback OHCI TD error bit needs to be reset before callback.
            ux_hcd_ohci_interrupt_handler.c             Changed the mechanism to report root hub port changes. There is 
                                                        now a bit per root hub port to indicate device insertion/extraction.
            ux_hcd_ohci_request_bulk_transfer.c         Fixed a problem with zero length packet in the OHCI driver.
            ux_hcd_sim_host_asynch_schedule.c           Added check for NULL pointer in the scheduling loop.
            ux_hcd_sim_host_asynchronous_endpoint_destroy.c
                                                        Added logic to update the current ED if current ED is the one being 
                                                        destroyed.
            ux_hcd_sim_host_transaction_schedule.c      Corrected several ED problems.
            ux_host_class_hub_deactivate.c              Fixed a problem when the hub class gets deactivated - deleted the 
                                                        semaphore properly.
            ux_host_class_*_deactivate.c                Changed the deactivation process of each host classes to ensure all 
                                                        pending transactions are terminated before cleaning the class.
            ux_host_stack_class_device_scan.c           Fixed a problem with custom classes which trigger on PID/VID.
            ux_host_stack_device_remove.c               Fixed a problem with custom classes which trigger on PID/VID.
            ux_host_stack_rh_change_process.c           Changed the mechanism to report root hub port changes. There is 
                                                        now a bit per root hub port to indicate device insertion/extraction.
            ux_host_stack_rh_device_insertion.c         Changed the mechanism to report root hub port changes. There is 
                                                        now a bit per root hub port to indicate device insertion/extraction.
            ux_host_stack_transfer_request.c            Added the UX_TRANSFER_STATUS_PENDING flag to transfer request status 
                                                        when a urb is scheduled. This allows each class to ensure no urbs are 
                                                        pending when shutting down.
            ux_utility.h                                Added new function prototypes.  
            ux_dcd_bf52*.*                              Added support for Blackfin USB device controller.
            ux_dcd_lpc3180*.*                           Added support for LPC3180 USB device controller.
            ux_dcd_sh7705*.*                            Added support for SH7705 USB device controller.
            ux_device_class_initialize.c                Added cdc initialize function.
            ux_device_class_cdc_read.c                  Added cdc read function.
            ux_device_class_cdc_write.c                 Added cdc write function.
            ux_device_class_dpump_initialize.c          Added dpump initialize function.
            ux_device_class_dpump_read.c                Added dpump read function.
            ux_device_class_dpump_write.c               Added dpump write function.
            ux_device_class_hid*.*                      Added support for HID device class.
            ux_device_class_pima*.*                     Added support for PIMA device class.
            ux_host_class_asix*.*                       Added support for Asix host class.
            ux_host_class_cdc*.*                        Added support for CDC host class.
            ux_host_class_pima*.*                       Added support for Pima host class.
            ux_host_class_prolific*.*                   Added support for Prolific host class.
            ux_pictbridge*.*                            Added Pictbridge support.
            ux_user.h                                   Added user conditional define file.  
            ux_utility_descriptor_pack.c                Added utility to pack descriptor.
            ux_utility_event_flags_create.c             Added utility to create event flags.
            ux_utility_event_flags_delete.c             Added utility to delete event flags.
            ux_utility_event_flags_get.c                Added utility to get event flags.
            ux_utility_event_flags_set.c                Added utility to set event flags.
            ux_utility_string_to_unicode.c              Added function for unicode encoding/decoding.
            ux_utility_unicode_to_string.c              Added function for unicode encoding/decoding.
            ux_*.c                                      Modified comment(s).
            ux_*.h                                      Modified comment(s).