Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: aconno_I2C Lis2dh12 adc52832_common aconno_SEGGER_RTT
bsp/bsp.cpp@22:7dae8496b97c, 2018-09-13 (annotated)
- Committer:
- jurica238814
- Date:
- Thu Sep 13 15:14:14 2018 +0200
- Branch:
- SimpleGATTExample
- Revision:
- 22:7dae8496b97c
- Parent:
- 19:2681edc2f2b9
LAUT example program
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| jurica238814 | 19:2681edc2f2b9 | 1 | /** |
| jurica238814 | 19:2681edc2f2b9 | 2 | * Jurica @ aconno |
| jurica238814 | 19:2681edc2f2b9 | 3 | * aconno.de |
| jurica238814 | 19:2681edc2f2b9 | 4 | * ResetaJurica@gmail.com |
| jurica238814 | 19:2681edc2f2b9 | 5 | * |
| jurica238814 | 19:2681edc2f2b9 | 6 | */ |
| jurica238814 | 19:2681edc2f2b9 | 7 | |
| jurica238814 | 19:2681edc2f2b9 | 8 | #include "mbed.h" |
| jurica238814 | 19:2681edc2f2b9 | 9 | #include "bsp.h" |
| jurica238814 | 19:2681edc2f2b9 | 10 | #include "aconnoConfig.h" |
| jurica238814 | 19:2681edc2f2b9 | 11 | |
| jurica238814 | 22:7dae8496b97c | 12 | DigitalOut redLed(RED_LED_PIN); |
| jurica238814 | 22:7dae8496b97c | 13 | DigitalOut greenLed(GREEN_LED_PIN); |
| jurica238814 | 19:2681edc2f2b9 | 14 | |
| jurica238814 | 22:7dae8496b97c | 15 | void bspInit() |
| jurica238814 | 19:2681edc2f2b9 | 16 | { |
| jurica238814 | 22:7dae8496b97c | 17 | redLed = LED_OFF; |
| jurica238814 | 22:7dae8496b97c | 18 | greenLed = LED_OFF; |
| jurica238814 | 19:2681edc2f2b9 | 19 | } |
