Add SD card debug view.

Bus and card configuration data, write and read testing.
This commit is contained in:
Jared Boone 2016-04-10 17:16:39 -07:00
parent 12939a0f82
commit 0cb923be6d
4 changed files with 617 additions and 1 deletions

View file

@ -28,6 +28,8 @@
#include "audio.hpp"
#include "ui_sd_card_debug.hpp"
namespace ui {
/* DebugMemoryView *******************************************************/
@ -272,7 +274,7 @@ DebugMenuView::DebugMenuView(NavigationView& nav) {
add_items<5>({ {
{ "Memory", [&nav](){ nav.push<DebugMemoryView>(); } },
{ "Radio State", [&nav](){ nav.push<NotImplementedView>(); } },
{ "SD Card", [&nav](){ nav.push<NotImplementedView>(); } },
{ "SD Card", [&nav](){ nav.push<SDCardDebugView>(); } },
{ "Peripherals", [&nav](){ nav.push<DebugPeripheralsMenuView>(); } },
{ "Temperature", [&nav](){ nav.push<TemperatureView>(); } },
} });