Fix all the following issues which we faced during 01st April internal demo 1) Display hang and jump issue 2) Sequencing issue 3) Issue with BP code

Dependencies:   SDFileSystem ds3231 program mbed testUniGraphic_150217

Fork of Int_Demo_01Apr2017_newdisplaycode_bp_nikita by nikita teggi

Committer:
nikitateggi
Date:
Mon May 08 05:19:22 2017 +0000
Revision:
12:ab85607bb10a
Parent:
4:6bd81bb1790d
POC code with new display and updated BP

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nikitateggi 1:8316c23ec6b9 1 #include "mbed.h"
nikitateggi 1:8316c23ec6b9 2 #include <stdio.h>
nikitateggi 1:8316c23ec6b9 3 #include "ds3231.h"
nikitateggi 1:8316c23ec6b9 4 #include "rtc.h"
nikitateggi 1:8316c23ec6b9 5
nikitateggi 1:8316c23ec6b9 6
nikitateggi 1:8316c23ec6b9 7
nikitateggi 1:8316c23ec6b9 8 time_t rtc_read()
nikitateggi 1:8316c23ec6b9 9 {
nikitateggi 1:8316c23ec6b9 10
nikitateggi 1:8316c23ec6b9 11 Ds3231 rtc(PTC11, PTC10);
nikitateggi 4:6bd81bb1790d 12 time_t epoch_time1;
nikitateggi 1:8316c23ec6b9 13 epoch_time1 = rtc.get_epoch();
nikitateggi 4:6bd81bb1790d 14
nikitateggi 4:6bd81bb1790d 15 return epoch_time1; // return the time
nikitateggi 1:8316c23ec6b9 16
nikitateggi 4:6bd81bb1790d 17 }