X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fplatforms%2Fmulle%2FPlatformSerialC.nc;h=2b3cf7c65acc12f169575ac61044cbcea9ece5c5;hb=3a993e16707c4fde0d1df1f2826205563ca980e1;hp=452c272e429188f3d502bae56afb5bfa3269ffb3;hpb=e3b86016fda95d4e54e2909f05dba41ca8461e16;p=tinyos-2.x.git diff --git a/tos/platforms/mulle/PlatformSerialC.nc b/tos/platforms/mulle/PlatformSerialC.nc index 452c272e..2b3cf7c6 100755 --- a/tos/platforms/mulle/PlatformSerialC.nc +++ b/tos/platforms/mulle/PlatformSerialC.nc @@ -50,12 +50,17 @@ configuration PlatformSerialC { implementation { components M16c62pUartC as Uart, - CounterMicro16C; + PlatformSerialP, CounterMicro16C; - StdControl = Uart.StdControl1; + StdControl = PlatformSerialP; + PlatformSerialP -> Uart.Uart1Control; UartStream = Uart.Uart1Stream; UartByte = Uart.Uart1Byte; Uart.Counter -> CounterMicro16C; + components MainC; + + MainC.SoftwareInit -> PlatformSerialP; + }