]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
Provide UartByte interface
authorrincon <rincon>
Fri, 1 Jun 2007 23:49:00 +0000 (23:49 +0000)
committerrincon <rincon>
Fri, 1 Jun 2007 23:49:00 +0000 (23:49 +0000)
tos/platforms/telosa/PlatformSerialC.nc

index bf7bdc302e331403e46f7d8dc8d30724aec7cfe3..c869bab7591856cf833f5a983dd35695def6568e 100644 (file)
@@ -3,6 +3,7 @@ configuration PlatformSerialC {
   
   provides interface StdControl;
   provides interface UartStream;
+  provides interface UartByte;
   
 }
 
@@ -10,6 +11,7 @@ implementation {
   
   components new Msp430Uart1C() as UartC;
   UartStream = UartC;  
+  UartByte = UartC;
   
   components TelosSerialP;
   StdControl = TelosSerialP;