Skip to content

Commit dbc14eb

Browse files
committed
Merge branch 'no-hww-process'
2 parents 2cf7b0d + f6dcfd2 commit dbc14eb

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

src/firmware_main_loop.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ void firmware_main_loop(void)
176176
* If USB has generated events at the application level,
177177
* process them now.
178178
*/
179-
hww_process();
180179
#if APP_U2F == 1
181180
u2f_process();
182181
#endif

src/hww.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,6 @@ void hww_abort_outstanding_op(void)
227227
rust_async_usb_cancel();
228228
}
229229

230-
void hww_process(void)
231-
{
232-
/** Nothing to do. */
233-
}
234-
235230
void hww_setup(void)
236231
{
237232
const CMD_Callback hww_cmd_callbacks[] = {{HWW_MSG, _msg}};

src/hww.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,6 @@ bool hww_blocking_request_can_go_through(const Packet* in_packet);
3232
*/
3333
void hww_blocked_req_error(Packet* out_packet, const Packet* in_packet);
3434

35-
/**
36-
* Processes the async operations on the HWW USB stack.
37-
* This is not doing anything at the moment, as all user operations
38-
* are handled with blocking operations upon packet reception.
39-
*/
40-
void hww_process(void);
41-
4235
/**
4336
* Called to abort any operation that blocked the HWW stack.
4437
*/

0 commit comments

Comments
 (0)