This commit is contained in:
2026-08-23 09:45:18 +02:00
parent 9cd595acfe
commit 9ca7618f14
5 changed files with 18 additions and 4 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
pub mod dex_db; pub mod cardstore;
pub mod nvs; pub mod settings;
+16
View File
@@ -0,0 +1,16 @@
use alloc::collections::HashMap;
use esp_hal::storage::FlashStorage;
use crate::card::model::NfcPayload;
const MAX_CARDS: usize = 20000;
struct CardStorage {
allocation_table: HashMap,
}
impl CardStorage {
fn get_card_by_uuid(uuid: &str) -> NfcPayload {}
fn get_card_by_position(position: usize) {}
}
-1
View File
@@ -1 +0,0 @@
// Storage dex_db module
-1
View File
@@ -1 +0,0 @@
// Storage nvs module
View File