2015-07-08 10:29 AM
Hello, i just get stm32f746g-disco board, but i can't do any programming, i need basic stdlib examples like st was providing with all discovery boards.
Where can i get this, i don't want to use HAL libraries Do they move away from this ?2015-07-08 10:38 AM
Do they move away from this ?
Yes.2015-07-08 10:45 AM
that is not good. They promised code comparability 1:1 with stm32f4, and now i have to relearn std lib bugs with HAL bugs.
2015-07-08 10:54 AM
Pester ST.
Meantime, you might want to investigate, how far the 'F4 SPL departs from 'F7s hardware. I guess the differences in the existing peripherals may be minimal, once you adopt the ''base'' stm32f7xx.h header; and you can take that one safely from Cube. The one big gotcha I know of is the lack of bitbanding in Cortex-M7. JW2015-07-08 10:54 AM
Or port a subset of the SPL to meet your needs.
I built some free standing code with GNU/GCC for the F7-DISCO without much grief. I think the problem is tractable.2015-07-08 10:58 AM
wow, not even a single example compiled with iar arm 7.40.2 worked from STM32Cube_FW_F7_V1.1.0, so good job ST, making most waited discovery board nonfunctional , files are missing, sytax is incorrect, just great !
downloading new iar arm version, if than not helps, i will be very sad2015-07-08 12:15 PM
Perhaps you need the IAR 7.40.3 service pack?
The M7/F7 stuff is all rather new.2015-07-08 01:17 PM
Ok, it compiles without errors with new version of IAR ARM.
But i am a bit not happy with HAL drivers, stuff is different from stdlib approach, but if that is only way to go, well, i have to get used to it :(