From 7ad622db703525d45f187bb74a6339aeb4ecd453 Mon Sep 17 00:00:00 2001 From: Peter Tanner Date: Sat, 29 Jun 2024 03:04:42 +0800 Subject: [PATCH] Update text of STM32 MSC tutorial --- ...024-06-23-Debugging-STM32-USB-Mass-Storage-Class-Device.md | 2 ++ post.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/_posts/2024-06-23-Debugging-STM32-USB-Mass-Storage-Class-Device.md b/_posts/2024-06-23-Debugging-STM32-USB-Mass-Storage-Class-Device.md index 1eb7940..b008a20 100644 --- a/_posts/2024-06-23-Debugging-STM32-USB-Mass-Storage-Class-Device.md +++ b/_posts/2024-06-23-Debugging-STM32-USB-Mass-Storage-Class-Device.md @@ -131,6 +131,8 @@ The maximum is `32678` bytes The read/write speeds improve on the previous tests, however it is still no where near the limit of the eMMC module. Currently I have not tried anything else to improve the speed, if there is any way then let me know. +This benchmark is with the largest media packet size (32768), 4 bit wide bus, 0 clock div and DMA. + ![crystaldiskmark benchmark with largest media packet size](/assets/img/2024-06-23-Debugging-STM32-USB-/crystaldiskmark_fast_large_buf.png) ## Conclusion diff --git a/post.sh b/post.sh index 7861b6f..1f65ec2 100755 --- a/post.sh +++ b/post.sh @@ -25,8 +25,8 @@ generate_front_matter() { echo "title: $1" echo "author: peter" echo "date: $current_date" - echo "categories: [Blogging] # Blogging | Electronics | Programming | Mechanical" - echo "tags: [getting started] # systems | embedded | rf | microwave | electronics | solidworks | automation" + echo "categories: [Blogging] # Blogging | Electronics | Programming | Mechanical | SelfHosting" + echo "tags: [getting started] # systems | embedded | rf | microwave | electronics | solidworks | automation | tip" echo "# image: assets/img/${filename:0:31}/preview.png" echo "---" }