]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/printf/printf.h
Updated Printf library to new way of not requiring explicit wiring of any interfaces...
[tinyos-2.x.git] / tos / lib / printf / printf.h
index e25b28e4ec6b5129c9ec7a7237ba4b25a9e66357..835e40e0a7eeb8ea219fbb0bb569a21cb41bfb96 100644 (file)
 #ifndef PRINTF_H
 #define PRINTF_H
 
-#include <stdio.h>
+#ifndef PRINTF_BUFFER_SIZE
+#define PRINTF_BUFFER_SIZE 250 
+#endif
+
+#if PRINTF_BUFFER_SIZE > 255
+  #define PrintfQueueC BigQueueC
+  #define PrintfQueue  BigQueue
+#else
+  #define PrintfQueueC QueueC
+  #define PrintfQueue  Queue
+#endif
+
+#ifdef _H_msp430hardware_h
+  #include <stdio.h>
+#endif
+#ifdef _H_atmega128hardware_H
+  #include "avr_stdio.h"
+#endif
 #include "message.h"
 
-#define PRINTF_BUFFER_SIZE 250
-
 typedef nx_struct printf_msg {
   nx_uint8_t buffer[TOSH_DATA_LENGTH];
 } printf_msg_t;