2022-04-28 06:18 AM
Hello Geeks...
Hope all are doing well
Recently, I'm working on STM32WB FUOTA
I know the FUOTA terminology of the STM32WB through the application document AN5247
Moreover, I have gone through the YouTube Tutorial series of the FUOTA for WB series
I'm trying to update my application over FUOTA but, some how it's verification always fails and it's rollover to BLE OTA loader app!
here are the steps which I'm following
Problem statements & Test procedure
1. Application firmware seems working well and I can pair the BLE device with STBLE app
2. I can send the OTA reboot request from the STBLE app, and MCU also reboot from the application code
3. However the main issue is, "STM_OTA" ble unable to advertise!
4. After power reboot, it's advertising as a "STM_OTA"
5.when I'm trying to send the application bin from 0x7000 then it's downloading from the app seamless
6.However the main issue is, it's always rollback to OTA loader and advertise as "STM_OTA"!!
For the reference, here I have attached the linker script, Memory region & memory details screenshot
I'm using the Wireless FW version: 1.13.2 and FUS version: 1.2.0
/**
*****************************************************************************
**
** File : stm32wb55xx_flash_cm4.ld
**
** Abstract : STM32CubeIDE Minimal System calls file
**
** For more information about which c-functions
** need which of these lowlevel functions
** please consult the Newlib libc-manual
**
** Environment : STM32CubeIDE for MCU
**
** Distribution: The file is distributed as is, without any warranty
** of any kind.
**
*****************************************************************************
**
** <h2><center>© COPYRIGHT(c) 2019 STMicroelectronics</center></h2>
**
** Redistribution and use in source and binary forms, with or without modification,
** are permitted provided that the following conditions are met:
** 1. Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright notice,
** this list of conditions and the following disclaimer in the documentation
** and/or other materials provided with the distribution.
** 3. Neither the name of STMicroelectronics nor the names of its contributors
** may be used to endorse or promote products derived from this software
** without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
*****************************************************************************
*/
/* Entry Point */
ENTRY(Reset_Handler)
/* Highest address of the user mode stack */
_estack = 0x20030000; /* end of RAM */
/* Generate a link error if heap and stack don't fit into RAM */
_Min_Heap_Size = 0x7500 ; /* required amount of heap */
_Min_Stack_Size = 0x9500 ; /* required amount of stack */
/* Specify the memory areas */
MEMORY
{
FLASH (rx) : ORIGIN = 0x08007000, LENGTH = 484k
RAM1 (xrw) : ORIGIN = 0x20000004, LENGTH = 191k
RAM_SHARED (xrw) : ORIGIN = 0x20030000, LENGTH = 10K
}
/* Define output sections */
SECTIONS
{
/* The startup code goes first into FLASH */
.isr_vector :
{
. = ALIGN(4);
KEEP(*(.isr_vector)) /* Startup code */
. = ALIGN(4);
} >FLASH
.ota_region 0x08007140:
{
KEEP(*(TAG_OTA_START))
. = ALIGN(4);
} >FLASH
/* The program code and other data goes into FLASH */
.text :
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
*(.text*) /* .text* sections (code) */
*(.glue_7) /* glue arm to thumb code */
*(.glue_7t) /* glue thumb to arm code */
*(.eh_frame)
KEEP (*(.init))
KEEP (*(.fini))
. = ALIGN(4);
_etext = .; /* define a global symbols at end of code */
} >FLASH
/* Constant data goes into FLASH */
.rodata :
{
. = ALIGN(4);
*(.rodata) /* .rodata sections (constants, strings, etc.) */
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */
. = ALIGN(4);
} >FLASH
.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
.ARM : {
__exidx_start = .;
*(.ARM.exidx*)
__exidx_end = .;
} >FLASH
.preinit_array :
{
PROVIDE_HIDDEN (__preinit_array_start = .);
KEEP (*(.preinit_array*))
PROVIDE_HIDDEN (__preinit_array_end = .);
} >FLASH
.init_array :
{
PROVIDE_HIDDEN (__init_array_start = .);
KEEP (*(SORT(.init_array.*)))
KEEP (*(.init_array*))
PROVIDE_HIDDEN (__init_array_end = .);
} >FLASH
.fini_array :
{
PROVIDE_HIDDEN (__fini_array_start = .);
KEEP (*(SORT(.fini_array.*)))
KEEP (*(.fini_array*))
PROVIDE_HIDDEN (__fini_array_end = .);
} >FLASH
.ota_region_end :
{
. = ALIGN(4);
KEEP(*(TAG_OTA_END))
. = ALIGN(4);
} >FLASH
/* used by the startup to initialize data */
_sidata = LOADADDR(.data);
/* Initialized data sections goes into RAM, load LMA copy after code */
.data :
{
. = ALIGN(4);
_sdata = .; /* create a global symbol at data start */
*(.data) /* .data sections */
*(.data*) /* .data* sections */
. = ALIGN(4);
_edata = .; /* define a global symbol at data end */
} >RAM1 AT> FLASH
/* Uninitialized data section */
. = ALIGN(4);
.bss :
{
/* This is used by the startup in order to initialize the .bss secion */
_sbss = .; /* define a global symbol at bss start */
__bss_start__ = _sbss;
*(.bss)
*(.bss*)
*(COMMON)
. = ALIGN(4);
_ebss = .; /* define a global symbol at bss end */
__bss_end__ = _ebss;
} >RAM1
/* User_heap_stack section, used to check that there is enough RAM left */
._user_heap_stack :
{
. = ALIGN(8);
PROVIDE ( end = . );
PROVIDE ( _end = . );
. = . + _Min_Heap_Size;
. = . + _Min_Stack_Size;
. = ALIGN(8);
} >RAM1
/* Remove information from the standard libraries */
/DISCARD/ :
{
libc.a ( * )
libm.a ( * )
libgcc.a ( * )
}
.ARM.attributes 0 : { *(.ARM.attributes) }
MAPPING_TABLE (NOLOAD) : { *(MAPPING_TABLE) } >RAM_SHARED
MB_MEM1 (NOLOAD) : { *(MB_MEM1) } >RAM_SHARED
MB_MEM2 (NOLOAD) : { _sMB_MEM2 = . ; *(MB_MEM2) ; _eMB_MEM2 = . ; } >RAM_SHARED
TAG_OTA_END(NOLOAD) : { KEEP (*(TAG_OTA_END)) } >FLASH
}
Can anyone help me here?
All comments and suggestions welcome
Thanks
Mahendra
Solved! Go to Solution.
2022-05-12 12:44 AM
Hi.. Guys
Hello @Remy ISSALYS any update on this
I'm eagerly waiting for the Feedback
Let me know, is there any way to debug the OTA loader app just like the video URL that i have shared in previous message ?
Thanks
Mahendra
2022-04-30 01:22 AM
Hi.. community
here is one more input
When I try to read the Flash memory from 0x08007000 after the OTA update cycle, its shows the empty flash at all
Thanks
2022-05-04 09:23 AM
Hello,
Can you check if the magic keyword is equal to 0x94448A29 in your app ?
Best Regards
2022-05-05 05:53 AM
Hi... @Remy ISSALYS
Thanks for your reply,
Yes, 0x08007140 is the address at where, Magic No. address is stored
I have read that address from the Cube programmer, and verified that the magic No is stored there
have a look at the cube programmer screenshot
Thanks
Mahendra
2022-05-05 06:00 AM
@Remy ISSALYS
I need to debug the OTA loader application just like the official reference video here
https://www.youtube.com/watch?v=mRzZOa3jmuM
But, when i try to debug the OTA loader then it's showing "no debug information available"
Any suggestions ?
Thanks
2022-05-12 12:44 AM
Hi.. Guys
Hello @Remy ISSALYS any update on this
I'm eagerly waiting for the Feedback
Let me know, is there any way to debug the OTA loader app just like the video URL that i have shared in previous message ?
Thanks
Mahendra
2022-05-12 02:04 AM
Hello,
In order to be able to debug BLE_Ota project, you should change project properties, inside "Properties for BLE_Ota" window:
Best Regards
2022-05-12 02:15 AM
Thanks @Remy ISSALYS
Let me test with the same, what's backing with the OTA loader
Will update the result soon...
2022-05-16 06:02 AM
Hi...@Remy ISSALYS
Your above remedy works for me, and I can able to debug the OTA loader app
I have just set the break points as per the reference video, and I got to know that, it is the issue with the Magic No address. verification
When i send the reboot request for the OTA update from the app then, i can check the value of the CFG_OTA_REBOOT_VAL_MSG set to 1, which is as expected
Where as Magic No address seems odd, than what I'm getting from my custom application
here, i have attached the screenshot from my custom app with using the cube programmer
As you can see from the above two screenshot
0x08007140 is the address at where the address of the magic no stored, which is 0x802Fcc4
In a second screenshot, you can see that at the address 0x802Fcc4 the magic no lies, which is 0x9448A29, which is as expected!
Now here the what i got after reboot at OTA loader app
The magic no. address seems 0x4c05b510 which is odd!
And that's how the magic no. address verification is failed
There is one thing that, i have notices during the OTA update via app
When I'm sending the OTA update request from the app then, instead of rebooting and directly pairing with the app i'll have to goes back from the app to find the "STM_OTA" ble device
And once again, i'll have to attach the file which i need to update!
Can you give me any hint, what's the wrong in it?
Thanks
Mahendra
2022-05-17 11:16 PM
I'd like to see the p2p_server_app.c file from your project if possible.
And question - have you modified BLE_Ota project?