Skip to content

Commit

Permalink
WIP - sdblock device
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Jul 12, 2024
1 parent 5f64231 commit 6c8a04d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion spikes/lk_lcd/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,14 @@ auto main() -> int

videokit.initializeScreen();

initializeSD();
// initializeSD();

constexpr auto default_sd_blockdevice_frequency = uint64_t {25'000'000};

sd_blockdevice.init();
sd_blockdevice.frequency(default_sd_blockdevice_frequency);

fatfs.mount(&sd_blockdevice);

HelloWorld hello;
hello.start();
Expand Down

0 comments on commit 6c8a04d

Please sign in to comment.