From 868a76a94b0061bff4cec014a185406e5edf31f3 Mon Sep 17 00:00:00 2001 From: shrewmouse1 <34042878+shrewmouse1@users.noreply.github.com> Date: Fri, 5 Feb 2021 10:42:50 -0500 Subject: [PATCH] Update readme.md Just fixing the "table of 3 types of STH32H7" so that it renders in github webpage. I had a tough time reading that table until I looked at the md source. You could also just put code fences around it: ~~~ /** * RAM area H747 H743 H742 Location * ------------------------------------------------ * DTCM 128k 128k 128k 0x20000000 * AXI-SRAM 511k 511k 384k 0x24000000 * * SRAM1 128k 128k 32k 0x30000000 * SRAM2 128k 128k 16k 0x30020000 * SRAM3 32k 32k - 0x30040000 * SRAM4 64k 64k 64k 0x38000000 * Backup SRAM 4k 4k 4k 0x38800000 */ ~~~ --- portable/NetworkInterface/STM32Hxx/readme.md | 22 +++++++++----------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/portable/NetworkInterface/STM32Hxx/readme.md b/portable/NetworkInterface/STM32Hxx/readme.md index ef3bc343df..6ea5356337 100644 --- a/portable/NetworkInterface/STM32Hxx/readme.md +++ b/portable/NetworkInterface/STM32Hxx/readme.md @@ -54,18 +54,16 @@ Here is an example of the changes to the linker file: } >AXI_RAM Here is a table of 3 types of STH32H7 : -/** - * RAM area H747 H743 H742 Location - * ------------------------------------------------ - * DTCM 128k 128k 128k 0x20000000 - * AXI-SRAM 511k 511k 384k 0x24000000 - * - * SRAM1 128k 128k 32k 0x30000000 - * SRAM2 128k 128k 16k 0x30020000 - * SRAM3 32k 32k - 0x30040000 - * SRAM4 64k 64k 64k 0x38000000 - * Backup SRAM 4k 4k 4k 0x38800000 - */ + +|RAM area |H747|H743|H742|Location | +|-----------|----|----|----|----------| +|DTCM |128k|128k|128k|0x20000000| +|AXI-SRAM |511k|511k|384k|0x24000000| +|SRAM1 |128k|128k|32k |0x30000000| +|SRAM2 |128k|128k|16k |0x30020000| +|SRAM3 |32k | 32k| - |0x30040000| +|SRAM4 |64k |64k |64k |0x38000000| +|Backup SRAM|4k |4k |4k |0x38800000| Please make sure that the addresses and lengths are correct for your model of STM32H7xx.