You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/utilities.md
+32-31Lines changed: 32 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ It communicates with the target using these [SDSIO Client interfaces](https://gi
54
54
-[socket](https://github.com/ARM-software/SDS-Framework/tree/main/sds/sdsio/client/sdsio_client_socket.c) for TCP/IP communication via IoT Socket using MDK-Middleware, LwIP, or CMSIS-Driver WiFi.
55
55
-[usb/bulk](https://github.com/ARM-software/SDS-Framework/tree/main/sds/sdsio/client/sdsio_client_usb_mdk.c) for communication via USB Bulk transfer using MDK-Middleware.
56
56
57
-
The SDS data stream is recorded to played back from `*.sds` files with the following naming convention:
57
+
The SDS data stream is recorded to and played back from `*.sds` files with the following naming convention:
58
58
59
59
`<name>.<label>[.p].sds` (where `[.p]` is optional and present only for recorded files in playback mode)
60
60
@@ -69,53 +69,56 @@ The data content of the `<name>.<label>[.p].sds` is described with metadata file
69
69
- Terminate the server with `Ctrl+C` or by pressing `X`.
Copy file name to clipboardExpand all lines: layer/sdsio/usb/README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,15 +30,14 @@ The following MDK-Middleware USB software components are required:
30
30
31
31
### USB Vendor ID and Product ID
32
32
33
-
The default `USBD_Config_0.h` contains placeholder Vendor ID (VID) and Product ID (PID) values that **must** be replaced before deployment:
33
+
The default `USBD_Config_0.h` contains placeholder Vendor ID (VID) and Product ID (PID) values:
34
34
35
35
```c
36
36
#define USBD0_DEV_DESC_IDVENDOR 0xC251 // replace with your own VID
37
37
#define USBD0_DEV_DESC_IDPRODUCT 0x8007 // replace with your own PID
38
38
```
39
39
40
-
- **VID**: Must be a VID assigned to your organization by [USB-IF](https://www.usb.org/getting-vendor-id). Do not use the Keil VID (`0xC251`) in a product.
41
-
- **PID**: Assign a product-specific value within your VID namespace.
40
+
The VID=0xC251 (Keil) and PID=0x8007 can be used for internal testing environments with limited access. For deployments with public access, a VID/PID for mass production should be assigned.
0 commit comments