rahmanih

Results 27 comments of rahmanih

yes mongodb is running ``` [rahmanih@OroJackson ~]$ service mongod status Redirecting to /bin/systemctl status mongod.service ● mongod.service - High-performance, schema-free document-oriented database Loaded: loaded (/usr/lib/systemd/system/mongod.service; enabled; vendor preset: disabled) Active:...

same issue with openOCD, the example I'm using is the following: https://github.com/draupnergraphics/touchgfx-open-repository/blob/master/app/tutorials/01_hello_world it's link file is the following: https://github.com/draupnergraphics/touchgfx-open-repository/blob/master/app/tutorials/01_hello_world/target/ST/STM32F746G-DISCO/gcc/application.ld

using the ST-Link utility downloaded from the st.com website, the same binary file is working correctly. but I had to enable the load from external flash. does the stlink support...

Hi, just to understand, does littleFS support NAND flash without any change? regards Haithem.

Hi @bdlr2, Did the NOR memory contain any data before running the application? regards Haithem.

Hi @bdlr2 Great news! Actually, the request to erase the memory is mentioned in the [README.md](https://github.com/STMicroelectronics/x-cube-azrtos-h7/tree/main/Projects/STM32H735G-DK/Applications/FileX/Fx_NoR_Write_Read_File#readme) ``` The NOR flash should be erased prior to format either by the application...

Hi @erFalcon, the **_LX_SYSTEM_INVALID_BLOCK_** is thrown due to formatting issue. Looking at the code above, there are 2 visible issues. - the **NOR_SECTOR_BUFFER_SIZE** should be as large as a physical...

hi @erFalcon, the LX_SYSTEM_INVALID_BLOCK is returned in 3 locations in the lx_nor_flash_open() * https://github.com/azure-rtos/levelx/blob/268e4edf9721beb8560a2d740e650bccb14e3270/common/src/lx_nor_flash_open.c#L410 * https://github.com/azure-rtos/levelx/blob/268e4edf9721beb8560a2d740e650bccb14e3270/common/src/lx_nor_flash_open.c#L436 * https://github.com/azure-rtos/levelx/blob/268e4edf9721beb8560a2d740e650bccb14e3270/common/src/lx_nor_flash_open.c#L810 After applying the suggested changes to format the memory, which one is...

> Hello @rahmanih, thanks for your commends. > > The issue is happening in the: > > https://github.com/azure-rtos/levelx/blob/268e4edf9721beb8560a2d740e650bccb14e3270/common/src/lx_nor_flash_open.c#L410 This means that the some blocks are not fully 0xFFFFFFFF, does your...

Could you please confirm that the application scenario is as following: 1. Erase NOR Flash 2. Format the Nor Flash 3. Open the NOR flash Fx media 4. Write Data...