Lizzy project

Dependencies:   aconno_I2C Lis2dh12 adc52832_common aconno_SEGGER_RTT

bsp/bsp.h

Committer:
jurica238814
Date:
2018-09-13
Branch:
SimpleGATTExample
Revision:
22:7dae8496b97c
Parent:
19:2681edc2f2b9

File content as of revision 22:7dae8496b97c:

/**
 * Aconno.de
 */

#ifndef __BSP_H__
#define __BSP_H__

#include "aconnoConfig.h"
#include "mbed.h"

#define RED_LED_PIN         (p15)
#define GREEN_LED_PIN       (p16)

#define LED_OFF 	(0)		// INVERTED FOR DIGITAL PINS
#define LED_ON		(1)

extern DigitalOut redLed;
extern DigitalOut greenLed;

void bspInit();

#endif //__BSP_H__