-
Notifications
You must be signed in to change notification settings - Fork 0
/
Catena4610_FED3.h
42 lines (29 loc) · 976 Bytes
/
Catena4610_FED3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Name: Catena4610_FED3.h
Function:
Global linkage for Catena4610_FED3.ino
Copyright:
See accompanying LICENSE file for copyright and license information.
Author:
Dhinesh Kumar Pitchai, MCCI Corporation May 2021
*/
#ifndef _Catena4610_FED3_h_
# define _Catena4610_FED3_h_
#pragma once
#include <Catena.h>
#include <Catena_Led.h>
#include <Catena_Mx25v8035f.h>
#include <Catena_Timer.h>
#include <SD.h>
#include <SPI.h>
#include "Catena4610_cMeasurementLoop.h"
// the global clock object
extern McciCatena::Catena gCatena;
extern McciCatena::cTimer ledTimer;
extern McciCatena::Catena::LoRaWAN gLoRaWAN;
extern McciCatena::StatusLed gLed;
extern SPIClass gSPI2;
extern McciCatena4610::cMeasurementLoop gMeasurementLoop;
// The flash
extern McciCatena::Catena_Mx25v8035f gFlash;
#endif // !defined(_Catena4610_FED3_h_)