spif icon indicating copy to clipboard operation
spif copied to clipboard

Error with w2q16jv interface

Open Rajkumar181 opened this issue 4 years ago • 8 comments

Hi, Thank you for your support. I am using STM32L432KC with W2q16jV. But I am not able to read the device ID. Please can you look it my code, I don't know where I am doing the mistake?

static void MX_SPI1_Init(void) {

/* USER CODE BEGIN SPI1_Init 0 */

/* USER CODE END SPI1_Init 0 */

/* USER CODE BEGIN SPI1_Init 1 */

/* USER CODE END SPI1_Init 1 / / SPI1 parameter configuration*/ hspi1.Instance = SPI1; hspi1.Init.Mode = SPI_MODE_MASTER; hspi1.Init.Direction = SPI_DIRECTION_2LINES; hspi1.Init.DataSize = SPI_DATASIZE_8BIT; hspi1.Init.CLKPolarity = SPI_POLARITY_LOW; hspi1.Init.CLKPhase = SPI_PHASE_1EDGE; hspi1.Init.NSS = SPI_NSS_SOFT; hspi1.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_8; hspi1.Init.FirstBit = SPI_FIRSTBIT_MSB; hspi1.Init.TIMode = SPI_TIMODE_DISABLE; hspi1.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE; hspi1.Init.CRCPolynomial = 7; hspi1.Init.CRCLength = SPI_CRC_LENGTH_DATASIZE; hspi1.Init.NSSPMode = SPI_NSS_PULSE_ENABLE; if (HAL_SPI_Init(&hspi1) != HAL_OK) { Error_Handler(); } /* USER CODE BEGIN SPI1_Init 2 */

/* USER CODE END SPI1_Init 2 */

}

In main

W25qxx_Init();

Output: w25qxx Init Begin... w25qxx ID:0xFFFFFF w25qxx Unknown ID

Rajkumar181 avatar Jun 19 '20 07:06 Rajkumar181

Hello. Do you config correctly w25qxxconfig.h file? And cs pin.

nimaltd avatar Jun 19 '20 10:06 nimaltd

Yes, and I have checked the cs pin and clock pin.

Rajkumar181 avatar Jun 19 '20 10:06 Rajkumar181

Your cs must be set in software mode

nimaltd avatar Jun 20 '20 04:06 nimaltd

GPIO_InitStruct.Pin = SPI_SEL1_Pin|SPI_SEL2_Pin; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);

yes, it is software mode.

Rajkumar181 avatar Jun 22 '20 12:06 Rajkumar181

Send photo of your spi config in cubemx

nimaltd avatar Jun 22 '20 13:06 nimaltd

image image image

Rajkumar181 avatar Jun 22 '20 14:06 Rajkumar181

Disable interrupt and dma and try again

nimaltd avatar Jun 23 '20 09:06 nimaltd

Hi, Sorry for the late reply, i have tried to disable the DMA and interpret, still i am getting same Error.

image image image

Rajkumar181 avatar Aug 17 '20 08:08 Rajkumar181