|
Revision 11, 480 bytes
(checked in by mlalondesvn, 15 months ago)
|
|
DS1337:
MODIF - Better documentation of alarm matching mode definitions.
|
| Line | |
|---|
| 1 | #ifndef staticPrint_H |
|---|
| 2 | #define staticPrint_H |
|---|
| 3 | |
|---|
| 4 | #ifndef SPrint |
|---|
| 5 | #define SPrint(str) SPrint_P(PSTR(str)) |
|---|
| 6 | #endif |
|---|
| 7 | |
|---|
| 8 | #ifndef SPrintln |
|---|
| 9 | #define SPrintln(str) SPrintln_P(PSTR(str)) |
|---|
| 10 | #endif |
|---|
| 11 | |
|---|
| 12 | #ifndef SPrintHex |
|---|
| 13 | #define SPrintHex(str) SPrintHex_P(PSTR(str)) |
|---|
| 14 | #endif |
|---|
| 15 | |
|---|
| 16 | #ifndef SPrint |
|---|
| 17 | #define SPrintlnHex(str) SPrintlnHex_P(PSTR(str)) |
|---|
| 18 | #endif |
|---|
| 19 | |
|---|
| 20 | void SPrint_P(const char *data); |
|---|
| 21 | void SPrintln_P(const char *data); |
|---|
| 22 | void SPrintHex_P(const char *data); |
|---|
| 23 | void SPrintlnHex_P(const char *data); |
|---|
| 24 | |
|---|
| 25 | #endif |
|---|