2019-11-25 10:09 PM
Wnen I work with STM32F407 and call this function my programm goes to infinite loop cause of unexpected interrupt. But there is no problem with STM32F303.
Is there any features STM32F4 I don't know about?
2019-11-26 8:02 AM
need more information. Lets start with the usual suspects:
2019-11-26 10:09 PM
Thank you for reply!
I want to learn how to work with FLASH memory, because i'll need to storage some data in my next project and i jast call that standart library function to earse, for example, last page (sector) .
The code i use is very simple:
void main (void)
{
1. uint32_t page_error = 0;
2. HAL_FLASH_Unlock();
3. EraseInit.TypeErase = FLASH_TYPEERASE_SECTORS;
4. EraseInit.VoltageRange = FLASH_VOLTAGE_RANGE_3;
5. EraseInit.Sector = FLASH_SECTOR_11;
6. EraseInit.Banks = FLASH_BANK_1;
7. EraseInit.NbSectors = 1;
8. HAL_FLASHEx_Erase(&EraseInit,&page_error);
9. HAL_FLASH_Program(FLASH_TYPEPROGRAM_HALFWORD,0x080E0000,0x0AB6);
10. HAL_FLASH_Lock();
11. while(1);
}
The program never reaches line 9 it goes to the point as shown below.
2019-11-27 9:48 PM
Thank you for reply!
I want to learn how to work with FLASH memory, because i'll need to storage some data in my next project and i jast call that standart library function to earse, for example, last page (sector) .
The code i use is very simple:
void main (void)
{
1. uint32_t page_error = 0;
2. HAL_FLASH_Unlock();
3. EraseInit.TypeErase = FLASH_TYPEERASE_SECTORS;
4. EraseInit.VoltageRange = FLASH_VOLTAGE_RANGE_3;
5. EraseInit.Sector = FLASH_SECTOR_11;
6. EraseInit.Banks = FLASH_BANK_1;
7. EraseInit.NbSectors = 1;
8. HAL_FLASHEx_Erase(&EraseInit,&page_error);
9. HAL_FLASH_Program(FLASH_TYPEPROGRAM_HALFWORD,0x080E0000,0x0AB6);
10. HAL_FLASH_Lock();
11. while(1);
}
The program never reaches line 9 it goes to the point as shown below.