Other Parts Discussed in Thread: CC1125, , CC1175
Im currently working on a custom PCB with cc1120 as transceiver and stm32f446RET6 as MCU. I integrate the cc1120 library from IT's library. The device uses SPI as serial communication. Here is the communication example given in user manual:
With this information i configured the SPI settings as:
after that i use HAL_SPI_TransmitRecieve( ) function as my comm func. in driver. But im not gonna share the complex library instead i will demonstrate the situation. My CS pin and cc1120 reset pin is logic HIGH in idle by software.
txdata[0] = 0x30; HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 0); HAL_SPI_TransmitReceive(&hspi1, txdata, rxdata, 1, 500); HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 1); /* USER CODE END 2 */ /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) { txdata[0] = 0x2F; HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 0); HAL_SPI_TransmitReceive(&hspi1, txdata, rxdata, 1, 500); HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 1); HAL_Delay(20); txdata[0] = 0x8F; HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 0); HAL_SPI_TransmitReceive(&hspi1, txdata, rxdata, 1, 500); HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 1); HAL_Delay(20); txdata[0] = 0x00; HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 0); HAL_SPI_TransmitReceive(&hspi1, txdata, rxdata, 1, 500); HAL_GPIO_WritePin(SPI1_CS_GPIO_Port, SPI1_CS_Pin, 1); HAL_Delay(20); /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ }
In this code first i use command SRES (0x30) for reset the device. In this situation device must be send chip status from MISO line when i start to transmit from MOSI line. But i cant see the chip status byte in MOSI line (Im seeing 0xFF as chip status byte). Chip status byte explained in datasheet as: "When the header byte, data byte, or command strobe is sent on the SPI interface, the chip status byte is sent by the CC112X on the SO pin." and:
Then in while loop , want to access PART NUMBER register for read the chip id. The chip id reg is a extended register (0x2F8F). So first im transmitting 0x2F then 0x8F after that i want to recieve chip id. But again i cant get anything.
So i cant reach the cc1120 device but i don't know why. I tried several different configurations. I use oscilloscope for see the lines and SCK line looks fine to me. Here is the MCU and the RF part of pcb. Almost same as the reference design of the cc1120:
So there is a external 32MHz oscillator indicated as Y2 but we don't have it so we use 32.578 MHz instead. Is that a problem for the device? Here is the scope results:
Ch1:SCK
CH2:MOSI
In MISO line im only seeing logic HIGH voltage and nothing else. I think that MOSI line scope results overlapping in while loop but im not sure. How can i solve this problem?