1
0
mirror of synced 2024-11-24 08:00:09 +01:00

修复。

This commit is contained in:
Sucareto 2021-06-22 11:12:17 +08:00 committed by GitHub
parent a7e4f0a834
commit 82f52db056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,11 +66,6 @@ void sg_req_transact(
sg_dispatch_fn_t dispatch,
void *ctx)
{
printf("req: ");
for (uint8_t i = 0; i < req_nbytes; i++)
printf("%02X ", req_bytes[i]);
printf("\n");
struct iobuf req_span;
union sg_req_any req;
union sg_res_any res;
@ -104,7 +99,10 @@ void sg_req_transact(
}
sg_frame_encode(res_frame, res.bytes, res.res.hdr.frame_len);
printf("req: ");
for (uint8_t i = 0; i < req_nbytes; i++)
printf("%02X ", req_bytes[i]);
printf("\n");
printf("res: ");
for (uint8_t i = 0; i < res_frame->pos; i++)
printf("%02X ", res_frame->bytes[i]);