deleted file
#include "stm32l100c_discovery.h"
#include "bsp.h"
#include "ssd1306.h"
// Write command to OLED
void WriteCommand(unsigned char command)
{
SSD_A0_Low();
SPI_SendByte(command);
SPI_Wait();
}
// Write data to OLED
void WriteData(unsigned char data)
SSD_A0_High();
SPI_SendByte(data);
// Initialize OLED
void ssd1306_Init(void)
/* Generate a reset */
SSD_Reset_Low();
Status change: