Hi all,I have a project running on an STM32F427VI that makes some specific use of the dual-bank flash, both for storing certain configuration parameters and for a custom bootloader. It's great, but I don't get anywhere near using the full 2MB of flas...
I recently upgraded to STM32CubeMX 6.3.0 (from 6.0.1) so that I can make a change to an existing .ioc file. This is on Windows 10.When I opened the .ioc file, everything seemed fine (after migrating) but the clock configuration tab claims that the c...
I've got a project that uses TIM1 in OC mode to toggle some pins. It's been working fine for months but I made some changes that sent me back to Cube to make changes. While there, it wanted me to migrate the project:Cube version 5.6.1 -> 6.0.1STM32...
I am porting code from an existing project that runs on an STM32F4 chip onto an STM32H7 chip, and have been losing my sanity for a couple of days trying to get over hurdle #1: I use a UART for communicating with the chip, and have not been able to ge...
Posted on June 08, 2017 at 17:31
Edit:
OK so just for the record, I guess, I replaced HAL_I2C_Master_Transmit_DMA() with HAL_I2C_Mem_Write(), which seems to be the appropriate command for what I'm doing, and that is working fine.
One questi...
Yes, and this register is correct on the VG chip (as I mentioned earlier) but why do this but not open a fuse somewhere that actually removes access to the supposedly unusable sectors (8-11 and 20-23)?More critically, per table 7 of that document, in...
Addendum - and OK I know there are a lot of feelings about HAL on the community here, but after scouring code for an unreasonably long amount of time I find absolutely no distinction between the 1MB and 2MB versions of the chip. I find a single macr...
Good points by @gbm and @Community member ... and I get that it's common practice to use a common die and then disable features for different product lines, or downselect based on inline test failures. But I mean I guess I would have assumed they...
Hi,Thanks for this! I had not paid close attention to that part of the Reference Manual because I was letting CubeMX do that work for me :)I will try this process today and post here again if there are still problems.