CFAL12832 Not turning on the Display

Joe Arun

New member
Hi,
I interface CFAL12832DB OLED display with my STM controller ,
I followed the information given at file:///C:/Users/night_Owl/Downloads/CFAL12832D-B_Series_Datasheet_Release_2016-04-28%20(2).pdf
The SCLK is 1.25 Mhz and I used 4 Wire Spi Configuration.
8 bit - MSB First, Clock Polarity high and 1 Clock phase -1st edge.
Code:
  SPI_Init();//SPI Init
  HAL_Delay(60);
  reset_display();
  HAL_Delay(60);
  init_OLED();
	while(1)	
	{
	
  show_bitmap(0);   // display image0
  HAL_Delay(6000);
  show_bitmap(1);   // display image1
  HAL_Delay(6000);
	}
I copied these files from the example codes given in the website,What could be going wrong in this?

Regards,
Joe
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 
Top