bthnycl / tinyos-main

Automatically exported from code.google.com/p/tinyos-main
0 stars 0 forks source link

Serial port not started in TestPrintf #137

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
TestPrintf does not start the serial port used by PrintfC to send AM packets. 

This can be fixed by adding the SerialStartC module to TestPrintfAppC:

configuration TestPrintfAppC{
}
implementation {
  components MainC, PrintfC, TestPrintfC, SerialStartC;
  components new TimerMilliC();

  TestPrintfC.Boot -> MainC;
  TestPrintfC.Timer -> TimerMilliC;
}

Original issue reported on code.google.com by phsom...@gmail.com on 29 May 2012 at 5:17

GoogleCodeExporter commented 8 years ago

Original comment by philip.l...@gmail.com on 30 May 2012 at 4:34