hathach
b4fde90b55
update clear status and get state
2021-07-14 17:03:20 +07:00
hathach
6a68fc6997
update dfu abort
2021-07-14 16:51:28 +07:00
hathach
95ded08e3b
simplify upload request
2021-07-14 16:42:12 +07:00
hathach
5b965a3888
more rename and update
2021-07-14 15:52:38 +07:00
hathach
27676f738d
rename tud_dfu_reboot_cb() to tud_dfu_detach_cb()
2021-07-14 15:31:20 +07:00
hathach
57d9f696a2
clean up
2021-07-14 15:24:09 +07:00
hathach
ac8d0abecf
rename dfu API
...
- tud_dfu_dnload_complete() -> tud_dfu_download_complete()
- tud_dfu_req_dnload_data_cb() -> tud_dfu_download_cb()
- tud_dfu_req_upload_data_cb() -> tud_dfu_upload_cb()
2021-07-14 15:04:38 +07:00
hathach
86d511f244
rename tud_dfu_set_timeout_cb() to tud_dfu_get_status_cb()
...
also add state as argument
2021-07-12 21:08:13 +07:00
hathach
8c48a4a288
clean up
2021-07-12 20:23:19 +07:00
hathach
389d340678
clean up
2021-07-12 20:17:44 +07:00
hathach
2916cd4575
rename TUD_DFU_MODE_DESCRIPTOR to TUD_DFU_DESCRIPTOR
2021-07-12 18:51:57 +07:00
hathach
134ed995c8
add alt to tud_dfu_abort_cb()
2021-07-12 18:50:19 +07:00
hathach
a0691a4fd4
update dfu_moded_open
2021-07-12 18:48:33 +07:00
Mengsk
2147a31f25
Fix wrong blocknum and length
2021-07-08 01:10:02 +02:00
Mengsk
5b4b5ca533
Add bwPollTimeout set callback, postpone download callback after GETSTATUS
2021-07-08 00:25:12 +02:00
HiFiPhile
7e883e0f41
Refactor with one DFU functionnal descriptor
2021-07-07 19:01:00 +02:00
Mengsk
941b02c6a9
Reactor to one functional descriptor.
2021-07-07 18:02:04 +02:00
Mengsk
71c0043261
TU_ASSERT return 0.
2021-07-07 12:18:25 +02:00
Mengsk
3949fb9e8c
Add DFU_DETACH support
2021-07-07 12:12:52 +02:00
Mengsk
88478594bc
Update comment
2021-07-07 12:06:41 +02:00
Mengsk
bc49ee7f2f
Better alt settings support
2021-07-07 11:55:36 +02:00
MasterPhi
cf4220a9fb
Update
2021-07-06 18:04:24 +02:00
Mengsk
c2b9ac9dd4
Fix ATTR_MANIFESTATION_TOLERANT logic.
2021-07-05 17:57:23 +02:00
Mengsk
c2d8ed3fd1
Add alt settings support in DFU class.
2021-07-05 17:56:21 +02:00
hathach
dfe410ea8b
fix ci build, address review comment
2021-07-05 12:38:15 +07:00
Jeremiah McCarthy
f5f087b2f8
Add dfu function memory access protection
...
Adds TU_VERIFY to dfu internal buffer access from host.
Adds TU_ASSERT to dfu internal buffer access by application.
2021-06-23 10:58:18 -04:00
hathach
9736e54734
include clean up
2021-05-27 17:40:39 +07:00
hathach
f9c542aa52
fix dfu example build
2021-05-26 18:16:56 +07:00
Jeremiah McCarthy
dab1ed6b32
Add example to be tested
...
Update API description.
2021-05-05 17:42:38 -04:00
Jeremiah McCarthy
f830800d00
Fix typo and clean up reset
2021-04-29 16:04:18 -04:00
Jeremiah McCarthy
b8e5885c2b
Removes polltimeout behaviour and restructures
...
Moves dfu_req_dnload_reply to ACK stage of a DNREQUEST.
Removes unneeded variables due to other simplifications.
2021-04-22 17:45:33 -04:00
Jeremiah McCarthy
8c80ddeb54
Fix statte check on DATA stage
2021-04-22 17:00:57 -04:00
Jeremiah McCarthy
cc440ade81
Remove custom status description table
2021-04-22 16:47:05 -04:00
Jeremiah McCarthy
e54d9d10af
Add const
2021-04-22 16:39:43 -04:00
Jeremiah McCarthy
289af581bb
Remove uunused code
2021-04-22 16:06:06 -04:00
Jeremiah McCarthy
18e9d253e9
Remove usb reset callback
2021-04-22 16:04:09 -04:00
Jeremiah McCarthy
0936a76dc9
Remove nonstd behaviour
2021-04-22 15:59:49 -04:00
Jeremiah McCarthy
88dea7a0a8
Move debug from .h to .c
2021-04-22 15:02:50 -04:00
Jeremiah McCarthy
01661b3f28
Replace dfu_mode with dfu
2021-04-22 14:56:52 -04:00
Jeremiah McCarthy
7b45b38fe4
Remove DFU mode and rt
2021-04-12 11:17:01 -04:00
Jeremiah McCarthy
ae851bba31
Resolve gcc warnings for no parameter functions
2021-04-07 17:15:26 -04:00
Jeremiah McCarthy
2e2dc7bdc5
Revise per initial comments
...
Returns the RT driver to the function state of previous iteration, which
did not support the will_detach. Behavior should be fine without this
feature. This removes much of the added bloat to track state, and
handle requests in the APP_DETACH state which is no longer required.
Removes the optional bloat added to the RT driver, such as responding to
GETSTATE requests.
Fixes the DFU Mode to extract the attr bits from the functional
descriptor when opened.
Fixes some incorrect bitwise if checks.
Also, updates some naming of functions to be consistent with the rest of
the library.
2021-04-07 17:05:04 -04:00
Jeremiah McCarthy
c39b7b8177
Add DFU runtime and mode "class"
...
With the runtime and mode portions in separate classes, a single
application should only be building with one or the other enabled. In
some applications both might be desired at build time.
The CFG_TUD_DFU_RUNTIME_AND_MODE option creates a DFU class, which asks
the application which mode to initialize to. This allows a runtime
change between RT and DFU mode, by just reinitializing tusb.
2021-04-05 17:52:33 -04:00
Jeremiah McCarthy
bc2cb99780
Remove unreachable callback
2021-04-05 17:06:27 -04:00
Jeremiah McCarthy
fdc91f8d2c
Fix bug during initialization of DFU Mode
2021-04-05 16:48:09 -04:00
Jeremiah McCarthy
c5b8ef1529
Separate DFU RT and Mode. Untested
2021-04-05 16:32:58 -04:00
Jeremiah McCarthy
164d3e82e3
Fix incorrect DNLOAD request len passed to app
...
Fixes bug where the app callback was getting the length of the status
request transfer rather than the length of the data stage payload.
TODO: Right now this returns the expected length, when it really should
be returning the transfer length.
2021-04-05 11:13:42 -04:00
Jeremiah McCarthy
fb7b47cf07
Minor cleanup
2021-03-26 17:32:03 -04:00
Jeremiah McCarthy
1138f8cc70
Add DFU Class per Version 1.1 Spec
2021-03-26 15:30:43 -04:00
hathach
e12c25ec2c
rename dfu_rt to dfu_runtime for easy reading
...
also rename tud_dfu_rt_reboot_to_dfu to tud_dfu_runtime_reboot_to_dfu_cb
2021-02-11 12:05:22 +07:00