Add fw state and fw cmd to trigger a start of a preloaded app

This commit is contained in:
Daniel Jobson 2024-09-03 15:29:21 +02:00
parent bdc4351480
commit 9330b9b5bb
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
4 changed files with 32 additions and 2 deletions

View file

@ -108,6 +108,10 @@ void fwreply(struct frame_header hdr, enum fwcmd rspcode, uint8_t *buf)
len = LEN_32;
break;
case FW_RSP_LOAD_APP_FLASH:
len = LEN_1;
break;
default:
htif_puts("fwreply(): Unknown response code: 0x");
htif_puthex(rspcode);