-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInkyCalInternal.h
More file actions
23 lines (18 loc) · 832 Bytes
/
InkyCalInternal.h
File metadata and controls
23 lines (18 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
*/
//Designed to be included in most C files in this project ...
//so it should include the minimum number of other headers possible
#ifndef INKYCALINTERNAL_H
#define INKYCALINTERNAL_H
#include <stdint.h>
#define INKY_SEVERITY_WARNING 10
#define INKY_SEVERITY_ERROR 20
#define INKY_SEVERITY_FATAL 30 //Probably won't see these on screen as wont get far enough
// (could change this to draw error on screen?)
//At end of processing we record number of errors
void logProblem(uint32_t severity);//Currently in InkyCal.ino
#endif