You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UINT ret = LX_SUCCESS;
/* USER CODE BEGIN NOR_WRITE */ <==== same word "NOR_WRITE"
/* USER CODE END NOR_WRITE */ <==== same word "NOR_WRITE"
return ret;
}
static UINT lx_nor_driver_block_erased_verify(ULONG block)
{
UINT ret = LX_SUCCESS;
/* USER CODE BEGIN NOR_WRITE */ <==== same word "NOR_WRITE"
/* USER CODE END NOR_WRITE */ <==== same word "NOR_WRITE"
return ret;
Development Environment :
STM32CubeIDE Version: 1.13.1
X-CUBE-AZRTOS-F4 V1.1.0
Issue : LevelX NOR Custom interface Code Generation problem
File : STM32CubeMX\templates\fx_stm32_custom_driver_c.ftl
static UINT lx_nor_driver_read(ULONG *flash_address, ULONG *destination, ULONG words)
{
UINT ret = LX_SUCCESS;
}
static UINT lx_nor_driver_write(ULONG *flash_address, ULONG *source, ULONG words)
{
UINT ret = LX_SUCCESS;
}
static UINT lx_nor_driver_block_erase(ULONG block, ULONG erase_count)
{
}
static UINT lx_nor_driver_block_erased_verify(ULONG block)
{
UINT ret = LX_SUCCESS;
}
need change code :
static UINT lx_nor_driver_block_erase(ULONG block, ULONG erase_count)
{
}
static UINT lx_nor_driver_block_erased_verify(ULONG block)
{
UINT ret = LX_SUCCESS;
}
The text was updated successfully, but these errors were encountered: