Delete device names from all the drivers. Move device inslude files from include/sys to include/machine directory. Only include files which have something useful for user layer (like special ioctls codes) should be placed into sys.
85 lines
1.7 KiB
C
85 lines
1.7 KiB
C
#ifndef _DEBUG_H
|
|
#define _DEBUG_H
|
|
|
|
#define DEBUG(...)
|
|
#define DEBUG1(...)
|
|
#define DEBUG2(...)
|
|
#define DEBUG3(...)
|
|
#define DEBUG4(...)
|
|
#define DEBUG5(...)
|
|
#define DEBUG6(...)
|
|
#define DEBUG7(...)
|
|
#define DEBUG8(...)
|
|
#define DEBUG9(...)
|
|
|
|
#ifdef GLOBAL_DEBUG
|
|
#undef DEBUG
|
|
#define DEBUG(...) printf(__VA_ARGS__)
|
|
|
|
#if (GLOBAL_DEBUG>=1)
|
|
#undef DEBUG1
|
|
#define DEBUG1(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=2)
|
|
#undef DEBUG2
|
|
#define DEBUG2(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=3)
|
|
#undef DEBUG3
|
|
#define DEBUG3(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=4)
|
|
#undef DEBUG4
|
|
#define DEBUG4(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=5)
|
|
#undef DEBUG5
|
|
#define DEBUG5(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=6)
|
|
#undef DEBUG6
|
|
#define DEBUG6(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=7)
|
|
#undef DEBUG7
|
|
#define DEBUG7(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=8)
|
|
#undef DEBUG8
|
|
#define DEBUG8(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#if (GLOBAL_DEBUG>=9)
|
|
#undef DEBUG9
|
|
#define DEBUG9(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#define SETVAL(X) \
|
|
TRISECLR = 0b0000000011111111; \
|
|
LATECLR = 0b0000000011111111; \
|
|
LATESET = (X & 0xFF)
|
|
/*
|
|
TRISFCLR = 0b0000000000110000; \
|
|
LATFCLR = 0b0000000000110000; \
|
|
TRISBCLR = 0b1111111000000000; \
|
|
LATBCLR = 0b1111111000000000; \
|
|
LATBCLR = 0b0000001000000000; \
|
|
LATFSET = ((X & 0x01) << 5) | ((X & 0x02) << 3); \
|
|
LATBSET = ((X & 0x04) << 13) | ((X & 0x08) << 11) | ((X & 0x10) << 9) | ((X & 0x20) << 7) | ((X & 0x40) << 5) | ((X & 0x80) << 3); \
|
|
LATBSET = 0b0000001000000000;
|
|
*/
|
|
|
|
#define LED_ON(X,Y) TRIS_CLR(X) = 1<<(Y); LAT_SET(X) = 1<<(Y);
|
|
#define LED_OFF(X,Y) TRIS_CLR(X) = 1<<(Y); LAT_CLR(X) = 1<<(Y);
|
|
|
|
#endif
|