Cleanup tester.

This commit is contained in:
Francois Best 2014-02-13 22:05:52 +01:00
parent b2800e5fdd
commit dbc9d97345
3 changed files with 9 additions and 15 deletions

View File

@ -13,9 +13,6 @@ SoftwareSerial softSerial(10, 11);
MIDI_CREATE_INSTANCE(SoftwareSerial, softSerial, midiSW);
#endif
// \todo Create instance for USB if available
void setupMidi()
{
while (!softSerial.isListening())

View File

@ -2,6 +2,3 @@
void setupTesters();
bool launchTests();

View File

@ -102,8 +102,8 @@ bool launchTests()
Serial.println("Testing HW:");
if (testerHW.run() == false)
return false;
/*Serial.println("Testing SW:");
Serial.println("Testing SW:");
if (testerSW.run() == false)
return false;*/
return false;
return true;
}