Search found 94 matches

by mlundin
Thu Nov 05, 2020 3:40 pm
Forum: General discussion
Topic: SDRAM use
Replies: 6
Views: 4345

Re: SDRAM use

I did this work 2 years ago, found example code somewhere in STM codebase and then adapted to the specific memory chip, details long forgotten. The main difference from your code is I dont use the HAL and configuration structures but direct register calls. GPIO pin configuration seems same but here ...
by mlundin
Thu Nov 05, 2020 8:32 am
Forum: General discussion
Topic: SDRAM use
Replies: 6
Views: 4345

Re: SDRAM use

Yes the external SDRAM on the STM32F746 can be be used. * First the memory must be initialized * Second, add this memory in the linker script for this variant /* Specify the memory areas */ MEMORY { RAM (xrw) : ORIGIN = 0x20010000, LENGTH = 320K FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 1024K SDRAM ...
by mlundin
Wed Nov 04, 2020 2:22 pm
Forum: STM boards (Discovery, Eval, Nucleo, ...)
Topic: Libraries for the STM32F746G Discovery screen?
Replies: 14
Views: 13836

Re: Libraries for the STM32F746G Discovery screen?

If you want D_CACHE enabled the screen buffer can be cleared in the cache using

Code: Select all

 void SCB_CleanDCache_by_Addr( uint32_t * addr, int32_t dsize) 		 
by mlundin
Wed Nov 04, 2020 1:39 pm
Forum: Let us know a bit about you and your projects
Topic: Just for fun, making sounds - mostly with STF32F7 DISCO
Replies: 3
Views: 7588

Just for fun, making sounds - mostly with STF32F7 DISCO

I am a retired mathematician using some spare time to play with microprocessors. I have previously been involved in building and programming robot mannequins for artistic exhibitions. Now I am more focused on digital music, and I would like to make the STM32f746 DISCO into a useable platform, and ma...

Go to advanced search