From ad94ae05c18ea07a8a693be0b95c93a8b45ffb9f Mon Sep 17 00:00:00 2001 From: Totoo Date: Mon, 8 Jan 2024 21:09:25 +0100 Subject: [PATCH] Fwrite fix (#1744) --- firmware/application/usb_serial_shell_filesystem.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/usb_serial_shell_filesystem.hpp b/firmware/application/usb_serial_shell_filesystem.hpp index af21d155..9b98ae5b 100644 --- a/firmware/application/usb_serial_shell_filesystem.hpp +++ b/firmware/application/usb_serial_shell_filesystem.hpp @@ -62,6 +62,6 @@ static std::filesystem::path path_from_string8(char* path) { {"ftell", cmd_sd_tell}, \ {"fread", cmd_sd_read}, \ {"frb", cmd_sd_read_binary}, \ - {"fread", cmd_sd_write}, \ + {"fwrite", cmd_sd_write}, \ {"fwb", cmd_sd_write_binary} // clang-format on