STM32F407ze throws hard fault on executing code from RAM.
https://stackoverflow.com/questions/72826600/stm32f407ze-throws-hard-fault-on-executing-code-from-ramPlease check the details of my linker and startup scripts on the above link.
https://stackoverflow.com/questions/72826600/stm32f407ze-throws-hard-fault-on-executing-code-from-ramPlease check the details of my linker and startup scripts on the above link.
HiI got these Errors upon compilation:../Drivers/Components/mt25tl01g/mt25tl01g.h:29:10: fatal error: mt25tl01g_conf.h: No such file or directory 29 | #include "mt25tl01g_conf.h" | ^~~~~~~~~~~~~~~~~~compilation terminated.make: *** [Drivers/Co...
Hello everybody!I am looking into possibilities of having 256 megabytes of SDRAM memory on a 144 pin STM32F7 chip. As I understand the 144 pin chips only have 16 bits data bus available for the SDRAM interface, so I was looking into using two, 8 bit ...
How can I receive the data from the server with STM32CUBE_RF and store the collected data continuously.
I'm trying to generate an arbitrary waveform on PA_5 pin, tim2 channel1 in PMW output, using stream5 channel3 DMAI tried to do exactly what is written on the application note AN4776 using a nucleo F446RE but it doesn't work here are all my code:dma.C...
Hello,I have problems to initialize my SPI1 interface, and send a request. My Logic Analyzer Says that, after powering without a STLink. SPI_HandleTypeDef hspi; RFM23::RFM23() {} bool RFM23::init() { hspi.Instance = SPI1; hspi.Init.Mode = S...
Hello!A simple setup to run the ADC1 in continuous conversion mode runs as expected, but the measured values are incorrect as inspected via the debugger console. When connecting the ADC1 input pin to GND or 3.3V volts the measured value doesn't chang...
Maybe in some register the baud rate is saved?
Problem type - ADC readings excess uncertainty when reading internal reference (channel 17) - got to this point after excess ADC reading uncertainty on device pins, trying to isolate cause.Hardware Details - small 2-layer board (about the size of a L...
//MASTER while (1) { /* USER CODE END WHILE */ ret = HAL_I2C_Master_Transmit(&hi2c1, peripheralNucleoAddress << 1, bufferTx, 1, HAL_MAX_DELAY); if (ret != HAL_OK) { strcpy((char*) bufferTx, "Tx"); HAL_UART_Transmit(&huart2, b...