I messed up the merge, so pushing it over to another repo so I don't lose it. Will tidy up and remove later

Dependencies:   BufferedSerial FatFileSystemCpp mbed

Committer:
AndyA
Date:
Thu Feb 18 18:15:48 2021 +0000
Revision:
9:7214e3c3e5f8
Parent:
3:14d241e29be3
Child:
14:76083dc18b0d
massive ripup and redesign; currently has file system build errors

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AndyA 0:97661408d0f9 1 #ifndef __LTCApp_h__
AndyA 0:97661408d0f9 2 #define __LTCApp_h__
AndyA 0:97661408d0f9 3
AndyA 0:97661408d0f9 4 #include "mbed.h"
AndyA 0:97661408d0f9 5 #include "LTCDecode.h"
AndyA 0:97661408d0f9 6 #include "VIPSSerialProtocol.h"
AndyA 0:97661408d0f9 7 #include "frameRates.h"
AndyA 0:97661408d0f9 8 #include "BufferedSerial.h"
AndyA 3:14d241e29be3 9 #include "FIZReader.h"
AndyA 9:7214e3c3e5f8 10 #include "frameclock.h"
AndyA 0:97661408d0f9 11 #include <stdint.h>
AndyA 0:97661408d0f9 12
AndyA 0:97661408d0f9 13 extern volatile uint32_t VBOXTicks;
AndyA 0:97661408d0f9 14 extern volatile bool ppsActive;
AndyA 0:97661408d0f9 15
AndyA 0:97661408d0f9 16 extern BufferedSerial pc;
AndyA 0:97661408d0f9 17
AndyA 0:97661408d0f9 18 extern frameRates detectedRate;
AndyA 0:97661408d0f9 19
AndyA 0:97661408d0f9 20 extern Timer TimeSinceLastFrame;
AndyA 0:97661408d0f9 21 extern uint32_t TimeSinceLastFrameWrap;
AndyA 0:97661408d0f9 22
AndyA 0:97661408d0f9 23 #endif