1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef SYSTEM_H #define SYSTEM_H #include "fixed_address_memory.h" // Pins #define TACH_PIN RC3 #define TACH_TRIS TRISC3 // TRIS enum { OUT = 0, IN = 1, }; void sysInit(void); #endif // SYSTEM_H