Add fw cmd to get UDI

This commit is contained in:
Daniel Lublin 2022-11-21 14:19:09 +01:00 committed by Michael Cardell Widerkrantz
parent 98a3a1240b
commit acb9c37ee7
No known key found for this signature in database
GPG key ID: D3DB3DDF57E704E5
3 changed files with 24 additions and 1 deletions

View file

@ -37,6 +37,8 @@ enum fwcmd {
FW_CMD_GET_APP_DIGEST = 0x09,
FW_CMD_LOAD_USS = 0x0a,
FW_RSP_LOAD_USS = 0x0b,
FW_CMD_GET_UDI = 0x0c,
FW_RSP_GET_UDI = 0x0d,
/* ... */
FW_RSP_GET_APP_DIGEST = 0x10, // encoded as 0x10 for backwards compatibility
};