parent
a1a68b4ad5
commit
2b37573a1d
|
|
@ -1,3 +1,5 @@
|
||||||
|
#include <avr/pgmspace.h>
|
||||||
|
|
||||||
#include "registers.h"
|
#include "registers.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
#include "application.h"
|
#include "application.h"
|
||||||
|
|
@ -62,7 +64,7 @@ struct RegisterRec {
|
||||||
// @@TODO it is nice to see all the supported registers at one spot,
|
// @@TODO it is nice to see all the supported registers at one spot,
|
||||||
// however it requires including all bunch of dependencies
|
// however it requires including all bunch of dependencies
|
||||||
// which makes unit testing and separation of modules much harder.
|
// which makes unit testing and separation of modules much harder.
|
||||||
static const RegisterRec registers[] = {
|
static const RegisterRec registers[] PROGMEM = {
|
||||||
RegisterRec(false, &project_major),
|
RegisterRec(false, &project_major),
|
||||||
|
|
||||||
RegisterRec(false, &project_minor),
|
RegisterRec(false, &project_minor),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue