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.
Fork of EFM32_SegmentLCD by
Revision 7:c7948fbb8729, committed 2017-04-01
- Comitter:
- MarSik
- Date:
- Sat Apr 01 14:13:33 2017 +0000
- Parent:
- 6:114aa75da77b
- Commit message:
- Add missing include (clocking.h); ; This include defines the LOW_ENERGY_CLOCK_FREQUENCY symbol; that is needed for computing the prescaler.;
Changed in this revision
| segmentlcd.c | Show annotated file Show diff for this revision Revisions of this file |
diff -r 114aa75da77b -r c7948fbb8729 segmentlcd.c --- a/segmentlcd.c Mon May 04 20:40:26 2015 +0000 +++ b/segmentlcd.c Sat Apr 01 14:13:33 2017 +0000 @@ -17,6 +17,7 @@ #include <string.h> #include <stdlib.h> #include <stdbool.h> +#include "clocking.h" #include "em_device.h" #include "em_cmu.h" #include "em_gpio.h"