Initial Skeleton setup

This commit is contained in:
2026-08-02 14:40:37 +02:00
parent 10dc9b1b83
commit ac2c05868f
26 changed files with 44 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
pub mod decoder;
pub mod mock;
pub mod model;
+1
View File
@@ -0,0 +1 @@
// Card decoder module
+1
View File
@@ -0,0 +1 @@
// Card mock module
+1
View File
@@ -0,0 +1 @@
// Card model module
+6
View File
@@ -0,0 +1,6 @@
pub mod palette;
pub mod primary_lcd;
pub mod secondary_oled;
pub mod sprite;
pub mod tertiary_lcd;
pub mod views;
+1
View File
@@ -0,0 +1 @@
// Display palette module
+1
View File
@@ -0,0 +1 @@
// Primary LCD module
+1
View File
@@ -0,0 +1 @@
// Secondary OLED module
+1
View File
@@ -0,0 +1 @@
// Display sprite module
+1
View File
@@ -0,0 +1 @@
// Tertiary LCD module
+3
View File
@@ -0,0 +1,3 @@
pub mod card_view;
pub mod menu_view;
pub mod status_bar;
+1
View File
@@ -0,0 +1 @@
// Card view module
+1
View File
@@ -0,0 +1 @@
// Menu view module
+1
View File
@@ -0,0 +1 @@
// Status bar view module
+1
View File
@@ -0,0 +1 @@
pub mod nfc_pn532;
+1
View File
@@ -0,0 +1 @@
// Drivers nfc_pn532 module
+7
View File
@@ -1 +1,8 @@
#![no_std]
pub mod card;
pub mod display;
pub mod drivers;
pub mod navigation;
pub mod network;
pub mod storage;
+2
View File
@@ -0,0 +1,2 @@
pub mod input;
pub mod state;
+1
View File
@@ -0,0 +1 @@
// Navigation input module
+1
View File
@@ -0,0 +1 @@
// Navigation state module
+2
View File
@@ -0,0 +1,2 @@
pub mod api_client;
pub mod wifi;
+1
View File
@@ -0,0 +1 @@
// Network api_client module
+1
View File
@@ -0,0 +1 @@
// Network wifi module
+2
View File
@@ -0,0 +1,2 @@
pub mod dex_db;
pub mod nvs;
+1
View File
@@ -0,0 +1 @@
// Storage dex_db module
+1
View File
@@ -0,0 +1 @@
// Storage nvs module