Add firmware wireframe

This commit is contained in:
fruchti 2019-12-10 23:19:01 +01:00
commit 66381c3cb6
23 changed files with 13167 additions and 0 deletions

10
src/buildid.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef BUILDID_H_
#define BUILDID_H_
extern char __BUILD_DATE;
extern char __BUILD_NUMBER;
#define BUILD_DATE ((uint32_t)&__BUILD_DATE)
#define BUILD_NUMBER ((uint32_t)&__BUILD_NUMBER)
#endif