cancel
Showing results for 
Search instead for 
Did you mean: 

stm32f4 SPI Busy flag seems to not work

spencerashiveley
Associate II
Posted on August 06, 2015 at 16:20

Hello all,

I'm trying to communicate with a nokia 5110 LCD. The nokia 5110 has a slave select bit that I am setting using a GPIO pin (because I'm not entirely sure how the NSS bit for SPI works). My problem is that when I send a transmission I wait for the busy flag to go down before I reset this slave select, the problem is the busy flag never sets so the slave select is being reset immediately and the nokia 5110 doesn't get the data. here's my initialization code:

SPI_InitTypeDef SPI_InitDef;
GPIO_InitTypeDef GPIO_InitDef;
//Initialization of gpio port A for SPI
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
GPIO_InitDef.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;
GPIO_InitDef.GPIO_Mode = GPIO_Mode_AF; //using alternative function
GPIO_InitDef.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitDef.GPIO_OType = GPIO_OType_PP;
GPIO_InitDef.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_PinAFConfig(GPIOA, GPIO_PinSource5, GPIO_AF_SPI1); //set PA5 to SPI1_Sclk
GPIO_PinAFConfig(GPIOA, GPIO_PinSource6, GPIO_AF_SPI1); //set PA6 to MISO (won't be used though, data only flows to Nokia5110)
GPIO_PinAFConfig(GPIOA, GPIO_PinSource7, GPIO_AF_SPI1); //set PA7 to MOSI
GPIO_Init(GPIOA, &GPIO_InitDef);
//Initiazation of gpio port C PC4 -> used for Data/Command (D/C) to Nokia 5110
//Data: PC4 is high
//Command: PC4 is low
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);
GPIO_InitDef.GPIO_Pin = GPIO_Pin_2| GPIO_Pin_4 | GPIO_Pin_5; //Pin 2 is Reset, Pin 4 is D/C, Pin 5 is CS
GPIO_InitDef.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitDef.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitDef.GPIO_OType = GPIO_OType_PP;
GPIO_InitDef.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_Init(GPIOC,&GPIO_InitDef);
//Initialization of SPI1
RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE); //enable clock for SPI1
SPI_InitDef.SPI_Direction = SPI_Direction_1Line_Tx;//only using Tx
SPI_InitDef.SPI_Mode = SPI_Mode_Master;//STM32f4 is master
SPI_InitDef.SPI_DataSize = SPI_DataSize_8b;
SPI_InitDef.SPI_CPOL = SPI_CPOL_Low; //Sclk is low in between transmissions
SPI_InitDef.SPI_CPHA = SPI_CPHA_1Edge;//clock data in on rising edge
SPI_InitDef.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_32;// clk frequency = APB2/32 = 84MHz/32 = 2.625MHz
SPI_InitDef.SPI_FirstBit = SPI_FirstBit_LSB; //data is transmitted LSB first
SPI_InitDef.SPI_NSS = SPI_NSS_Soft;
SPI_Init(SPI1, &SPI_InitDef);//initialize spi1
SPI_Cmd(SPI1, ENABLE);//enable spi1

and here is my SPI transmission:

void static lcdwrite(enum typeOfWrite type, char message){
//SPI isn't quite working yet, Busy flag never seems to go high. Possibly because of NSS pin
if(type == COMMAND){
// wait until SSI0 not busy/transmit FIFO empty
while(!SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE)){};
GPIO_ResetBits(GPIOC, GPIO_Pin_4|GPIO_Pin_5);
SPI1->DR = message; // command out, wait until SSI0 not busy/transmit FIFO empty
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_BSY)){};
GPIOC->ODR |= (0x1<<
5
);
} else{
while(!SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE)){}; // wait until transmit FIFO not full
GPIO_ResetBits(GPIOC,GPIO_Pin_5); //Chip select is active low
GPIO_SetBits(GPIOC, GPIO_Pin_4); 
SPI1->DR = message; 
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_BSY)){}; //wait until transmission complete (not working)
GPIOC->ODR |= (0x1<<5); // bring chip select high
}
}

Any help would be greatly appreciated. the function SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_BSY) keeps returning 0 so the while loop is skipped. #!stm32f4-disco
2 REPLIES 2
Posted on August 07, 2015 at 04:34

[DEAD LINK /public/STe2ecommunities/mcu/Lists/STM32Java/Flat.aspx?RootFolder=/public/STe2ecommunities/mcu/Lists/STM32Java/STM32f4%20SPI%20Busy%20Flag&FolderCTID=0x01200200770978C69A1141439FE559EB459D758000F9A0E3A95BA69146A17C2E80209ADC21&TopicsView=https://my.st.com/public/STe2ecommunities/mcu/Lists/STM32Java/AllItems.aspx&currentviews=1]cross-posted

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
spencerashiveley
Associate II
Posted on August 07, 2015 at 05:08

Thanks for the reply Clive, I thought I posted this in the wrong spot, tried deleting... didn't know how.