ARM Cortex-M7 based 32 bit MCU family from ST-Microelectronics. Relative of the STM32F4 family.
Questions tagged [stm32f7]
164 questions
1
vote
1 answer
STM32F7 Discovery - where are the LEDs?
I am learning about ARM development on my STM32F7 Discovery Kit (w/ STM32F746NGH6 Microcontroller) and I'm trying to write a "blinky" program without using high level libraries.
Reading the documentation, I couldn't figure out which MCU pins are all…

Jurc192
- 85
- 2
- 14
1
vote
0 answers
How to get data from ADC with STM32F7
So I wanted to read out multiple channels from adc3 on my stm32f7 discovery. I have been able to read out one channel and set up for multiple ones, but I can't figure out how to read out per channel. I wanted to read them out by interrupt so I set…

vera
- 21
- 3
1
vote
0 answers
LwIP on STM32F769
I'm trying to make a webserver out of my STM32F769I-Discovery board with RTOS and LwIP. It's supposed to return a few simple html/image files.
Here's the link to the full code I have so…

xtrinch
- 2,232
- 1
- 24
- 46
1
vote
1 answer
STM32F7 Discovery - USB FS host/device mode detection
The STM32F723IEK6 Discovery board has a full speed USB interface. I am trying in vain to initialize it. The reset signal is never received from the host and the appropriate interrupt flag is not set.
The FS interface is OTG. It is supposed to…

A.K.
- 839
- 6
- 13
1
vote
0 answers
ARM Cortex-M4/7: Do regular memory accesses between LDREX/STREX invalidate the exclusive monitor
I am trying to rewrite a code section that currently works with disabling/enabling interrupts with LDREX/STREX on a STM32F7(single core, microcontroller).
May sound like a straightforward question, but after a couple of days researching, did not…

Dan
- 11
- 1
1
vote
2 answers
lwIP call remote server API
This question will be rather general, as I haven't even gotten to coding yet and am just wondering if it is possible to achieve what I want with lwIP.
What I would like, is for my embedded STM32F769I-Disco board to call a website URL API, e.g.…

xtrinch
- 2,232
- 1
- 24
- 46
1
vote
2 answers
1s timer on STM32F769I-DISCO
I'm trying to set up a 1s led blink on STM32F69I discovery board with STM32 HAL libraries. I've set up my timer the following way:
__TIM2_CLK_ENABLE();
s_TimerInstance.Init.Prescaler = (216000);
s_TimerInstance.Init.CounterMode =…

xtrinch
- 2,232
- 1
- 24
- 46
1
vote
1 answer
On STM32F7 DMA triggered by APB1 timers fails
I have STM32F7 Disco board with STM32F723IEK MCU. Trying to trigger a DMA request from a timer causes a DMA error, but only for timers from the APB1 group (TIM2 to TIM7 and others), that are connected to DMA1. Doing the same with TIM1 and TIM8,…

A.K.
- 839
- 6
- 13
1
vote
1 answer
Producing two outputs from a Linker script
There is a Quad-SPI NOR device on the STM32F746G-Discovery Board that I would like to use to store read only data.
So the ideal would be that the linker file produces an ELF file for the F746G flash and a hex file to program the NOR.
Then I could…

SuperSix
- 11
- 2
0
votes
0 answers
Data corruption issue with DMA operations on ARM Cortex-M7 (STM32F7) MCU
I'm using an ARM Cortex-M7 microcontroller (specifically the STM32F767ZG) to communicate with external devices using 4 USARTs (configured as asynchronous transmitters/receivers, and using DMA to handle transfers). While testing the (bare metal)…

DrCeeVee
- 31
- 3
0
votes
0 answers
Saving Values in STM32f769i Disco Board
I have an stm32f769i disco board and have developed a screen that has a series of timers and other values that get changed periodically. Is there a way to save these values in the board with a simple save icon?
Tried saving to memory card with no…

AMSP
- 1
0
votes
0 answers
E200(ValidationError): stm32: Unable to bind the STM AI runtime with "cnn" c-model: []
I am trying to validate my code to target device and get the following error.
Now i have tried the solutions in https://zhuanlan.zhihu.com/p/428430042 except one. it says to choose M7 in single core mode. My board is STM32F769-DISCO and im not sure…

afsara_ben
- 542
- 1
- 11
- 30
0
votes
0 answers
ERROR: Please install STMCubeProgrammer on the machine
I am trying to validate a simple code on STM32F769NI target device. After clicking 'Validate on Target' in CubeMX, i select the following options and pressok.
I get the error please install STMCubeProgrammer. I have installed this programmer, the…

afsara_ben
- 542
- 1
- 11
- 30
0
votes
2 answers
STM32 SPI slave dummy cycles issue
I am using a STM32F767zi nucleo board as SPI full duplex slave. The dummy cycles of the slave device is varies in accordance with the master frequency change. How can I handle the dummy cycles independent of master frequency? What is the solution…
0
votes
0 answers
Cortex Debug + OpenOCD + GDB STM32F767ZI : gdb-set mi-async on -> Cannot change this setting while the inferior is running
When launching Cortex-Debug in VSCode, the command gdb-set mi-async on triggers the error Failed to generate gdb commands: Cannot change this setting while the inferior is running. As a result, I cannot debug on VSCode. Full error report…

Hyori
- 1
- 1