Posted on February 10, 2018 at 00:46
Im Using STM32F767ZI Nucleo Board which has 2Mbytes of flash for code storage. It also allows for the flash to be evenly divided between two banks. This gives bank 1 one Mbyte of data, and bank 2 one Mbyte of ...
Posted on October 12, 2017 at 23:55Hardware and Software Versions:MCU: STM32F767ZI Nucleo BoardEn X Cube CryptoLib V3.1.0Cube MX Version 4.22.1Latest System Workbench 6 installation.Problem:Using AES 256 in CBC mode attempting to encrypt block of da...
Posted on August 10, 2016 at 23:11Using CubeMX version 4.16.0 with DMA it does not let you turn off FIFO mode. The check mark does not deselect. The generated source code needs to be manually modified to turn off FIFO. After the following change the...
Posted on August 09, 2016 at 23:33 I downloadedX-Cube-Crypto Library from the email and i have the zip. Issue is that i cant seem to find anything that would install it into the CubeMX software. I can browse the zip and see the files and examples ...
In my case im using F767ZI Nucleo. Have you tried just programming test data into bank 2 while running from Bank 1 to see if you are able to then read it with the STM32CubeProgrammer tool?Also not sure what your EraseSector() function does but i eras...
As far as code the above is what i still use with this section changed to be the following:if ((SYSCFG->MEMRMP & SYSCFG_MEMRMP_SWP_FB) == RESET) //Test if Bank == 1
{
BaseAddress = 0x08100000;
}
else
{
BaseAddress = 0x08100000;
}To actually get it ...
Posted on June 19, 2018 at 00:33I dont see an exact part number, but you can go to sites such as snapeda.com and paste your actual MPN to see if that pattern and symbol is available there. If it is see what the pad is connected to. Almost always its...