Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2022-04-22 02:34:51 +0300
committerKevin O'Connor <kevin@koconnor.net>2022-04-22 02:34:51 +0300
commit882bb649e8ad4276dea6895d7e095063ad4c4fea (patch)
tree5a86f451de0c02d3f23dc4430bff347538331081
parenta02da851011b9eea2ca3083cf286341c550fb208 (diff)
docs: List only micro-controller names in benchmarks table in Features.mdwork-benchmarks-20220421
There is concern that some users are interpreting the benchmark table in Features.md as a list of "supported boards" or possibly "recommended boards". This was not the intent. Remove the board names from the list to make it more clear the intent is only to describe the benchmarks. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--docs/Features.md26
1 files changed, 15 insertions, 11 deletions
diff --git a/docs/Features.md b/docs/Features.md
index 2303132c1..a29703667 100644
--- a/docs/Features.md
+++ b/docs/Features.md
@@ -161,20 +161,24 @@ represent total number of steps per second on the micro-controller.
| ------------------------------- | ----------------- | ----------------- |
| 16Mhz AVR | 157K | 99K |
| 20Mhz AVR | 196K | 123K |
-| Arduino Zero (SAMD21) | 686K | 471K |
+| SAMD21 | 686K | 471K |
| STM32F042 | 814K | 578K |
| Beaglebone PRU | 866K | 708K |
| STM32G0B1 | 1103K | 790K |
-| "Blue Pill" (STM32F103) | 1180K | 818K |
-| Arduino Due (SAM3X8E) | 1273K | 981K |
-| Duet2 Maestro (SAM4S8C) | 1690K | 1385K |
-| Smoothieboard (LPC1768) | 1923K | 1351K |
-| Smoothieboard (LPC1769) | 2353K | 1622K |
-| Raspberry Pi Pico (RP2040) | 2400K | 1636K |
-| Duet2 Wifi/Eth (SAM4E8E) | 2500K | 1674K |
-| Adafruit Metro M4 (SAMD51) | 3077K | 1885K |
-| BigTreeTech SKR Pro (STM32F407) | 3652K | 2459K |
-| Fysetc Spider (STM32F446) | 3913K | 2634K |
+| STM32F103 | 1180K | 818K |
+| SAM3X8E | 1273K | 981K |
+| SAM4S8C | 1690K | 1385K |
+| LPC1768 | 1923K | 1351K |
+| LPC1769 | 2353K | 1622K |
+| RP2040 | 2400K | 1636K |
+| SAM4E8E | 2500K | 1674K |
+| SAMD51 | 3077K | 1885K |
+| STM32F407 | 3652K | 2459K |
+| STM32F446 | 3913K | 2634K |
+
+If unsure of the micro-controller on a particular board, find the
+appropriate [config file](../config/), and look for the
+micro-controller name in the comments at the top of that file.
Further details on the benchmarks are available in the
[Benchmarks document](Benchmarks.md).