How to send command to the NOR flash using SPI?
I'm using STM32L4A6VGx , MT25QL256 NOR Flash connected with SPI. I'm trying to read the ID but didn't get any response except 0. Here is the code I wrote: // Select Pin HAL_GPIO_WritePin(Select_GPIO_Port, Select_Pin, GPIO_PIN_SET); HAL_Delay(10); HAL...