It's the first time I'm trying to use the SPI protocol with Flash memory.Write Program function code:void Flash_Write_Data(void){ uint8_t Write_Enable = 0x06; uint8_t Page_Program = 0x02; uint32_t Address = 0x00000000; uint8_t addrLow...
Thanks for the quick and helpful reply. The following logic analyser image shows that CE# pin is low until the 8th bit last clock SCLK for HAL_SPI_Receive(&hspi2,RxData1,1,10000) function call.Also I've checked with HAL_SPI_TransmitReceive(&hspi2,&du...