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)
Status change: