stm32f4 hardfault
hiI use stm32f4 micro but an external interrupt pinwhen i increase frequency of the external signal connected to interrupt pin, the micro jump to hardfaultwhy? how I can detect the solution?
hiI use stm32f4 micro but an external interrupt pinwhen i increase frequency of the external signal connected to interrupt pin, the micro jump to hardfaultwhy? how I can detect the solution?
Hi, I have STM32F407 and trying to read/wirte from/to SD card and often the code get stuck in the this loop: static uint32_t SD_FindSCR(SD_HandleTypeDef *hsd, uint32_t *pSCR) { //... while(!__HAL_SD_GET_FLAG(hsd, SDIO_FLAG_RXOVERR | SDIO_FLAG_DC...
Hi, I am new to STM32. I am facing problem with UART interfacing. I have connected UART to GSM modem and I am using AT Commands to interface with modem. To test the commands and its response, I have connected the serial sniffer (UART to USB converter...
I have built a bootloader at the begin of CM7 flash memory. I want to update both CM7 and CM4 flash memory. How is it possible to stop CM4 execution before updating the flash memory and reset the CM4 core after update? All must be controlled only fr...
Hi amazing community.I am working with the following mcu STm32F103Since in the design of our board we didn't insert any real eeprom for saving some data we decided to use a emulation tecnique provided from ST Here below it is reported the header fi...
I am trying to enable the SRAM parity check, code snippet is as follows:FLASH_OBProgramInitTypeDef config;HAL_FLASH_Unlock();HAL_FLASH_OB_Unlock();HAL_FLASHEx_OBErase();HAL_FLASHEx_OBGetConfig(&config);config.USERConfig = 0x00;HAL_FLASHEx_OBProgram(&...
Hi, i try to get the COM35H3P70ULC Display to work with the STM32H747L-Disco Board using a custom Adapter PCB. The Display is connected using 2 Lane DSI and i tried to configure the DSI Host to communicate with it. I cant get it work or respond to an...
I need advice on setting up a 'primary timer/clock' to toggle a an output pin for 20ms, at a user set frequency of anywhere from 16Millihertz to 16.65Hz ( approx ) with 16 bit resolution. ( user sets value from 0 to 10000 )The primary timer/clock mus...
I am trying to interface the STM32H747 with a quadrature encoder-equipped motor to track linear movement. When moving forward, I expect the counter to increment. When moving backwards, I expect the counter to decrement. To do this, I have configured ...
Hi all, I am using TIM1 as PWM output generator, and TIM15 and TIM16 as general counters. A problem has occurred where the TIM15 CC1 and CC2 interrupt flags would become set after initialization, thus triggering the TIM15 interrupt. However, both the...