Changeset - 577e97ae4dc1
[Not reviewed]
cortex-f0
0 4 0
Ethan Zonca - 10 years ago 2015-01-03 00:16:55
ez@ethanzonca.com
Remove discovery includes. Should probably just include _conf.h or something instead.
4 files changed with 0 insertions and 4 deletions:
0 comments (0 inline, 0 general)
eeprom_min.c
Show inline comments
 
#include "stm32l100c_discovery.h"
 

	
 
void Minimal_EEPROM_Unlock(void)
 
{
 
  if((FLASH->PECR & FLASH_PECR_PELOCK) != RESET)
 
  {
 
    /* Unlocking the Data memory and FLASH_PECR register access*/
gpio.c
Show inline comments
 
#include "stm32l100c_discovery.h"
 
#include "gpio.h"
 
#include "config.h"
 

	
 
extern volatile uint32_t ticks;
 

	
 
// Increase on each press, and increase at a fast rate after duration elapsed of continuously holding down... somehow...
spi.c
Show inline comments
 
#include "stm32l100c_discovery.h"
 

	
 
void init_spi(void)
 
{
 
    SPI_InitTypeDef  SPI_InitStructure;
 

	
 
    // OLED IC
ssd1306.c
Show inline comments
 
#include "stm32l100c_discovery.h"
 
#include "ssd1306.h"
 
 
// Write command to OLED
 
void WriteCommand(unsigned char command)
 
{
 
  SSD_A0_Low();
0 comments (0 inline, 0 general)