mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-15 13:12:18 -04:00
Add SD card debug view.
Bus and card configuration data, write and read testing.
This commit is contained in:
parent
12939a0f82
commit
0cb923be6d
4 changed files with 617 additions and 1 deletions
|
@ -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>(); } },
|
||||
} });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue