summaryrefslogtreecommitdiff
path: root/examples/device/dfu/src
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-07-15 21:09:05 +0700
committerhathach <[email protected]>2021-07-15 21:09:05 +0700
commit6acaa94b3262ab3204ce23b60d20eabae5e0189c (patch)
tree62a3baec73f41d227e1f4d7dac7e19bdfee5c409 /examples/device/dfu/src
parent406832158d326031fa4ab4744a4703293a358fba (diff)
fix warnings
Diffstat (limited to 'examples/device/dfu/src')
-rw-r--r--examples/device/dfu/src/main.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/device/dfu/src/main.c b/examples/device/dfu/src/main.c
index 7133d1624..5c8464526 100644
--- a/examples/device/dfu/src/main.c
+++ b/examples/device/dfu/src/main.c
@@ -145,14 +145,15 @@ uint32_t tud_dfu_get_timeout_cb(uint8_t alt, uint8_t state)
// Invoked when received DFU_DNLOAD (wLength>0) following by DFU_GETSTATUS (state=DFU_DNBUSY) requests
// This callback could be returned before flashing op is complete (async).
// Once finished flashing, application must call tud_dfu_finish_flashing()
-void tud_dfu_download_cb(uint8_t alt, uint16_t wBlockNum, uint8_t const* data, uint16_t length)
+void tud_dfu_download_cb(uint8_t alt, uint16_t block_num, uint8_t const* data, uint16_t length)
{
- (void) data;
+ (void) alt;
+ (void) block_num;
+
//printf("\r\nReceived Alt %u BlockNum %u of length %u\r\n", alt, wBlockNum, length);
for(uint16_t i=0; i<length; i++)
{
- // printf(" [%u][%u]: %x\r\n", wBlockNum, i, (uint8_t)data[i]);
printf("%c", data[i]);
}