add CH32V203 porting

This commit is contained in:
XIVN1987
2023-01-06 02:02:23 +08:00
parent c0938a4b86
commit 7d3e19af69
87 changed files with 28486 additions and 5 deletions
+1 -1
View File
@@ -1622,7 +1622,7 @@ __WEAK uint32_t DAP_ProcessVendorCommand(const uint8_t *request, uint8_t *respon
// response: pointer to response data
// return: number of bytes in response (lower 16 bits)
// number of bytes in request (upper 16 bits)
__weak uint32_t DAP_ProcessVendorCommandEx(const uint8_t *request, uint8_t *response) {
__WEAK uint32_t DAP_ProcessVendorCommandEx(const uint8_t *request, uint8_t *response) {
*response = ID_DAP_Invalid;
return ((1U << 16) | 1U);
}