Hello,I’m using STMCUBE Version: 1.9.0 with STM32h750 chip.1. I would like to know to convert intel hex file to a binary file with multiple section addresses? We like to prevent a scenario in that intel hex sections are not sequential, and the bina...
I would need assistance in editing the linker script and the startup (.s) file to access the memory area from a c routine...
Hi, I'm looking for a way to store data directly in SRAM. You may ask "Why?":So, my system is collecting data from sensors and writing them to SD card. One full block of data is 128 bytes long. Collecting data and write operation happens when certain...
I am using STM32f051c6t6. I am using internal crystal clock source. I have also set Timer clock source to 24 MHz. I am writing simple program to generate low and high pulse. The 10 us pulse is not generated properly. The rise and fall times has delay...
I have tested the HAL_I2C_Master_Transmit(&hi2c1, 0x68, some_data, 10, HAL_MAX_DELAY);in my nucleo stm32f302r8. But, It is not working, when I go to debug, the program retun HAL error at checking the NACK is detected or not. below is picture: Here i...
I configured ADC with DMA for 5 channels.but converted values are wrong. Last channel value stored in First in the buffer and First channel value copied to remaining buffer static void MX_ADC1_Init(void) { ADC_ChannelConfTypeDef sConfig = {0}; /*...
I'm new to STM32s and I want to verify that I can put a Quad-SPI PSRAM chip (or SRAM, DRAM, etc) on the Quad-SPI interface and have everything work? From what I have read it seems like it will work, but everything seems to refer to using FLASH memori...
I have 3 ADCs (ADC1, ADC2, ADC3) configured with 3 different channels for 3 gpio pins to collect the data and all 3 ADC's are triggered simultaneously by TIM1 at the rising edge of the pulse. It is also configured in the single conversion mode (i.e.,...
I watched a tutorial using this code: pwmData[0] = 10; pwmData[1] = 20; pwmData[2] = 30; pwmData[3] = 40; pwmData[4] = 50; pwmData[5] = 60; pwmData[6] = 70; pwmData[7] = 80; pwmData[8] = 90; pwmData[9] = 100; HAL_TIM_PWM_Start_...