Initialize function blake2s function pointer at start

This commit is contained in:
Michael Cardell Widerkrantz 2022-12-14 18:07:47 +01:00
parent 1f4bb0dd0b
commit 396e6e5bd1
No known key found for this signature in database
GPG Key ID: D3DB3DDF57E704E5

View File

@ -150,6 +150,8 @@ int main()
uint8_t uss[32] = {0};
uint8_t digest[32] = {0};
enum state state = FW_STATE_INITIAL;
*fw_blake2s_addr = (uint32_t)
blake2s; // Let the app know the function adddress for blake2s()
print_hw_version(namever);
@ -175,9 +177,6 @@ int main()
// CDI = hash(uds, hash(app), uss)
compute_cdi(digest, use_uss, uss);
// Let the app know the function adddress for blake2s()
*fw_blake2s_addr = (uint32_t) blake2s;
// Flip over to application mode
*switch_app = 1;