Andrew Boyson / clock

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Thu Feb 21 21:19:57 2019 +0000
Revision:
58:ad2bfd0345de
Parent:
57:4daf2e423b27
Forgot to rename the end of some conversion routines from 'XxxxTimeT' to 'XxxxTime64'.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 37:330b844f54b6 1 #include <stdint.h>
andrewboyson 26:0421132e6eaf 2 #include <time.h>
andrewboyson 26:0421132e6eaf 3
andrewboyson 37:330b844f54b6 4 #include "tm.h"
andrewboyson 37:330b844f54b6 5 #include "clktime.h"
andrewboyson 54:a3c018ceca77 6 #include "clkutc.h"
andrewboyson 26:0421132e6eaf 7
andrewboyson 58:ad2bfd0345de 8 void ClkTimeToTmLocal(clktime time, struct tm* ptm) { TmLocalFromTime64(ClkUtcFromTai(time) >> CLK_TIME_ONE_SECOND_SHIFT, ptm); }
andrewboyson 58:ad2bfd0345de 9 void ClkTimeToTmUtc (clktime time, struct tm* ptm) { TmUtcFromTime64(ClkUtcFromTai(time) >> CLK_TIME_ONE_SECOND_SHIFT, ptm); }
andrewboyson 58:ad2bfd0345de 10 clktime ClkTimeFromTmUtc( struct tm* ptm) { return ClkUtcToTai(((clktime)TmUtcToTime64(ptm)) << CLK_TIME_ONE_SECOND_SHIFT) ; }