[hardware_test] Get rid of the reset step

This commit is contained in:
Romain Goyet
2018-05-04 15:57:03 +02:00
committed by Ecco
parent 339ec330c1
commit aa776be032
6 changed files with 4 additions and 85 deletions

View File

@@ -29,13 +29,12 @@ App::WizardViewController::WizardViewController(Responder * parentResponder) :
m_ledTestController(this),
m_batteryTestController(this),
m_USBTestController(this),
m_serialNumberController(this),
m_resetController(this)
m_serialNumberController(this)
{
}
int App::WizardViewController::numberOfChildren() {
return 7;
return 6;
}
ViewController * App::WizardViewController::childAtIndex(int i) {
@@ -45,8 +44,7 @@ ViewController * App::WizardViewController::childAtIndex(int i) {
&m_ledTestController,
&m_batteryTestController,
&m_USBTestController,
&m_serialNumberController,
&m_resetController
&m_serialNumberController
};
return children[i];
}