FirmIO: Initial commit

This commit is contained in:
Paul Hollinsky
2022-03-27 18:10:24 -04:00
parent 008a1620c8
commit 2dd91325e6
7 changed files with 512 additions and 7 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef __FIRMIO_H_
#define __FIRMIO_H_
#if defined (__linux__)
#include "icsneo/platform/posix/firmio.h"
#else
// This driver is only relevant for communication communication between
// Linux and CoreMini from the onboard processor of the device, you
// likely do not want it enabled for your build.
#warning "This platform is not supported by the firmio driver"
#endif
#endif