diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/intel-quark-d2000/CMakeLists.txt | 3 | ||||
-rw-r--r-- | examples/intel-quark-d2000/schematic.h | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/examples/intel-quark-d2000/CMakeLists.txt b/examples/intel-quark-d2000/CMakeLists.txt index 4c0ef68..e139440 100644 --- a/examples/intel-quark-d2000/CMakeLists.txt +++ b/examples/intel-quark-d2000/CMakeLists.txt @@ -1,7 +1,8 @@ kicad_gen( TARGET schematic.h NET schematic/intel-quark-d2000.net - REF U1) + REF U1 + IN_SOURCE) if (FALSE) # If you have Intel Quark support for CMake something like this would work: diff --git a/examples/intel-quark-d2000/schematic.h b/examples/intel-quark-d2000/schematic.h new file mode 100644 index 0000000..3ca8e86 --- /dev/null +++ b/examples/intel-quark-d2000/schematic.h @@ -0,0 +1,15 @@ +#ifndef SCHEMATIC_H +#define SCHEMATIC_H + +/* +THIS FILE IS GENERATED. DO NOT EDIT. + +Generated from schematic for reference U1, part INTEL_QUARK_D2000 in library kicad_utils. +*/ + +#include <stddef.h> + +static const uint8_t SCHEMATIC_STATUS_LED = 15; +static const uint8_t SCHEMATIC_PUSH_BUTTON = 11; + +#endif // SCHEMATIC_H |