2021-01-11 04:20 AM
I'm trying to port the SBSFU to STM32H735. I started from the project for the NUCLEO-H753ZI.
I get errors in sfu_fwimg_core.c on FW_INFO_TOT_LEN but where is this defined?
A simple grep -r turns up nothing.
Thanks!
Solved! Go to Solution.
2021-01-11 04:36 AM
Hello Arno,
this symbol is used in SBSFU v2.3.1 but no more in latest version 2.4.0
In previous release you could find
#define FW_HEADER_TOT_LEN (sizeof(SE_FwRawHeaderTypeDef)) /*!< FW INFO Total Len*/
in sfu_fwimg_internals.h
So, I guess there is a mixup between the 2 releases.
Best regards
Jocelyn
2021-01-11 04:36 AM
Hello Arno,
this symbol is used in SBSFU v2.3.1 but no more in latest version 2.4.0
In previous release you could find
#define FW_HEADER_TOT_LEN (sizeof(SE_FwRawHeaderTypeDef)) /*!< FW INFO Total Len*/
in sfu_fwimg_internals.h
So, I guess there is a mixup between the 2 releases.
Best regards
Jocelyn
2021-01-11 05:48 AM
*removed, should have been reply*
2021-01-11 05:49 AM
Thank you for the quick response. Does this mean the project for H753 hasn't been updated yet to v2.4.0?
2021-01-11 06:01 AM
Also I must add, that this could be entirely my error.
2021-01-11 06:05 AM
Hello Arno,
I think I was not clear. I meant a mixup on your side between the 2 releases.
There were some evolutions between v2.3.1 and 2.4.0 and this symbol is actually no more used in the new 2.4.0.
The evolution impacted all the targets.
Best regards
Jocelyn
2021-01-11 06:32 AM
Indeed it was. Thanks for the help.