Skip to content

Commit

Permalink
fix out of flash message in spade- add preceding slash (#2257)
Browse files Browse the repository at this point in the history
fix OO_FLASH message
  • Loading branch information
recursiveforte authored Aug 30, 2024
1 parent 6265083 commit 0ad2b1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/spade/src/rpi/upload.h
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@ static int upl_stdin_read(void) {

// not enough slots
if (get_available_flash_slots(exclude) < GAME_SLOTS(upl_state.len)) {
// OO_FLASH/{slots needed}/{slots available}/
printf("OO_FLASH/%lu/%d/", GAME_SLOTS(upl_state.len),
// /OO_FLASH/{slots needed}/{slots available}/
printf("/OO_FLASH/%lu/%d/", GAME_SLOTS(upl_state.len),
get_available_flash_slots(exclude));
multicore_launch_core1(core1_entry);
return 0; // ERROR!
Expand Down
Binary file modified public/pico-os.uf2
Binary file not shown.

0 comments on commit 0ad2b1d

Please sign in to comment.