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

LTCApp.h

Committer:
AndyA
Date:
2021-01-28
Revision:
3:14d241e29be3
Parent:
0:97661408d0f9
Child:
9:7214e3c3e5f8

File content as of revision 3:14d241e29be3:

#ifndef __LTCApp_h__
#define __LTCApp_h__

#include "mbed.h"
#include "LTCDecode.h"
#include "VIPSSerialProtocol.h"
#include "frameRates.h"
#include "BufferedSerial.h"
#include "FIZReader.h"
#include <stdint.h>

extern volatile uint32_t VBOXTicks;
extern volatile bool ppsActive;
extern DigitalOut led1;
extern DigitalOut led2;
extern DigitalOut led3;

extern BufferedSerial pc;

extern frameRates detectedRate;

extern Timer TimeSinceLastFrame;
extern uint32_t TimeSinceLastFrameWrap;

#endif