removing chip cause unexplainable artifact.
I have a st chip (HT35) with the STM32H735G-DK Discovery Kit. Projects was complete and running fine. We then had to remove the OCTO SPI nor flash chip because we need access to Pe2. but after removing the chip the app froze after MX_TIM4_Init(). The solution was to put it at the end of the init process, and I'm hoping to find out why.
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_DMA_Init();
MX_USART3_UART_Init();
MX_ADC3_Init();
MX_TIM1_Init();
MX_UART7_Init();
<<WAS HERE>>
MX_SPI5_Init();
MX_DAC1_Init();
MX_SPI4_Init();
MX_TIM4_Init(); <-- now here
Anyone have a thought?
