User Activity

@TDK​ I am getting error in below line in my code*((uint8_t*)(CB[arr_index].baseaddress + (CB[arr_index].position*sizeof(uint8_t)))) = *((uint8_t*)data);This error is not occuring when i am using STMCube IDE but when i am imported my project to IAR e...
I am sending some variable's address through UART then reading and getting those data from UART, often my program stucks into hardfault handler to avoid that in handler i just added __NVIC_SystemReset(); Is there any other way to avoid Hardfault han...
In GUI_Conf.c, allocated the memory size for GUI.And in LCD_Conf.c file, declared the size of display ,configured the flexcolor driver for ILI9341 controller.And aslo implemented the read and write function by using SPI. In order to resolve the Hard...
I have implemented 3 ADC with DMA. ADC1 with DMA1 stream 0 , ADC2 with DMA2 stream 0 and ADC3 with BDMA channel 0 Resolution : 16 bit , ADC clock : 7MHZ , Sample : 8.5 cyclesAll these ADC are Time trigger for that i am using timer 1 as center aligned...
Hi,i am trying to implement a SPI communication with STM32H7(Master) to STM32F1(slave) with interrupt mode. In Slave Side SPI3(with NSS Hardware Input) i have enabled, In Master Side SPI6 (GPIO Pin Toggling for SS) I have Enabled My Issue is at Slave...