aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-08-16 12:36:44 -0230
committerSam Anthony <sam@samanthony.xyz>2025-08-16 12:36:44 -0230
commita8a68e5e77cac2fedb03a164acc666ccc1a1a8b1 (patch)
tree7acf6683361403dee551263c9f84e32179be465c
parent4a99ede565fa61005f2a6202669adaa87a8ce0ee (diff)
downloadcan-gauge-interface-a8a68e5e77cac2fedb03a164acc666ccc1a1a8b1.zip
add device and compiler to header comments
-rw-r--r--sw/eeprom.h3
-rw-r--r--sw/spi.h5
-rw-r--r--sw/sys.h4
-rw-r--r--sw/types.h5
4 files changed, 15 insertions, 2 deletions
diff --git a/sw/eeprom.h b/sw/eeprom.h
index 4e4dfe2..07438a0 100644
--- a/sw/eeprom.h
+++ b/sw/eeprom.h
@@ -1,4 +1,7 @@
/* Microchip 25LC160C 2KiB EEPROM
+ *
+ * Device: PIC16F1459
+ * Compiler: XC8 v3.00
*
* Usage:
*
diff --git a/sw/spi.h b/sw/spi.h
index a949155..1da0fcc 100644
--- a/sw/spi.h
+++ b/sw/spi.h
@@ -1,4 +1,7 @@
-/* Usage:
+/* Device: PIC16F1459
+ * Compiler: XC8 v3.00
+ *
+ * Usage:
*
* #include <stdint.h>
* #include "types.h"
diff --git a/sw/sys.h b/sw/sys.h
index 1d54039..8a71edb 100644
--- a/sw/sys.h
+++ b/sw/sys.h
@@ -1,3 +1,7 @@
+/* Device: PIC16F1459
+ * Compiler: XC8 v3.00
+ */
+
// TRIS
enum {
OUT = 0,
diff --git a/sw/types.h b/sw/types.h
index ba56050..22a651e 100644
--- a/sw/types.h
+++ b/sw/types.h
@@ -1,4 +1,7 @@
-/* Usage:
+/* Device: PIC16F1459
+ * Compiler: XC8 v3.00
+ *
+ * Usage:
*
* #include <stdint.h>
* #include "types.h"