Hi,
I am trying to interface STM32F4 series controller with CC3000.
I am using MSP430FR5739 basic wifi application example code provided by TI for porting it on STM32.
SPI used here is polling mode.
my SPI configuration are :
spi baudrate : 1MHz, master clock is 168MHz.
CPOL : 0
CPHA : 1
This is the flow of my application :
1 . Power ON
2. pio_init();
3. wlan_init( CC3000_UsynchCallback, sendWLFWPatch, sendDriverPatch,sendBootLoaderPatch, ReadWlanInterruptPin, WlanInterruptEnable,WlanInterruptDisable, WriteWlanPin);
4. wlan_start(0);
Inside wlan init function we call
SimpleLink_Init_Start(usPatchesAvailableAtHost);
and send the first spi command to CC3000 : HCI_CMND_SIMPLE_LINK_START
For this command CC3000 should respond with a command complete response packet which i dont receive.
my IRQ line doesnt go low to indicate cc3000 is ready to send data to host.
STM32 wait in the function hci_event_handler(pRetParams, 0, 0); forever.
From the TI link i figured out that for each command host gets some so i printed out what ever i read form the data register of SPI to see if cc3000 is pushing some data out but i am getting some garbage values .
I unable to figure out where is the issue,Does CC3000 recieve the command what i send.
Can some one help me out here to figure out i am held up in this problem for almost 5 days .