From 7952c7fab805f7af10c37eee9719559847520dc8 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 3 Nov 2022 11:29:23 -0700 Subject: [PATCH] Remove "Board Recovery" section from datasheets of boards without feature Some Arduino boards have a bootloader that allows them to be recovered from a "soft bricked" state by pressing the reset button twice. The bootloader on the boards which do not have a native USB capability don't recognize this double reset. The reason is because the "soft bricked" state is specific to the native USB boards, so boards without native USB have no need for this recovery capability. Previously, bootloader support for double reset was claimed for several boards which do not have such a bootloader. Since these boards do not have or need any sort of "board recovery" system, the "Board Recovery" section is removed entirely from their datasheets --- .../hardware/02.hero/boards/mega-2560/datasheet/datasheet.md | 3 --- .../hardware/02.hero/boards/uno-mini-le/datasheet/datasheet.md | 3 --- .../hardware/02.hero/boards/uno-rev3/datasheet/datasheet.md | 3 --- .../hardware/03.nano/boards/nano-every/datasheet/datasheet.md | 3 --- content/hardware/03.nano/boards/nano/datasheet/datasheet.md | 3 --- .../08.kits/maker/make-your-uno-kit/datasheet/datasheet.md | 3 --- 6 files changed, 18 deletions(-) diff --git a/content/hardware/02.hero/boards/mega-2560/datasheet/datasheet.md b/content/hardware/02.hero/boards/mega-2560/datasheet/datasheet.md index 4b7a98c0c7..79d055202b 100644 --- a/content/hardware/02.hero/boards/mega-2560/datasheet/datasheet.md +++ b/content/hardware/02.hero/boards/mega-2560/datasheet/datasheet.md @@ -129,9 +129,6 @@ Sample sketches for the Arduino® MEGA 2560 can be found either in the “Exampl ### Online Resources Now that you have gone through the basics of what you can do with the board you can explore the endless possibilities it provides by checking exciting projects on ProjectHub **[5]**, the Arduino® Library Reference **[6]** and the online store **[7]** where you will be able to complement your board with sensors, actuators and more. -### Board Recovery -All Arduino boards have a built-in bootloader which allows flashing the board via USB. In case a sketch locks up the processor and the board is not reachable anymore via USB it is possible to enter bootloader mode by double-tapping the reset button right after power up. - ## Connector Pinouts ![Arduino Mega Pinout](./assets/ArduinoMEGAPinOut.png) diff --git a/content/hardware/02.hero/boards/uno-mini-le/datasheet/datasheet.md b/content/hardware/02.hero/boards/uno-mini-le/datasheet/datasheet.md index 8257f8ec19..a8a91af6cc 100644 --- a/content/hardware/02.hero/boards/uno-mini-le/datasheet/datasheet.md +++ b/content/hardware/02.hero/boards/uno-mini-le/datasheet/datasheet.md @@ -153,9 +153,6 @@ Sample sketches for the Arduino UNO Mini can be found either in the “Examples ### Online Resources Now that you have gone through the basics of what you can do with the board you can explore the endless possibilities it provides by checking exciting projects on ProjectHub **[5]**, the Arduino Library Reference **[6]** and the online store **[7]** where you will be able to complement your board with sensors, actuators and more -### Board Recovery -All Arduino boards have a built-in bootloader which allows flashing the board via USB. In case a sketch locks up the processor and the board is not reachable anymore via USB it is possible to enter bootloader mode by double-tapping the reset button right after power up. -
## Connector Pinouts diff --git a/content/hardware/02.hero/boards/uno-rev3/datasheet/datasheet.md b/content/hardware/02.hero/boards/uno-rev3/datasheet/datasheet.md index c8fd4f1acd..ecd002579b 100644 --- a/content/hardware/02.hero/boards/uno-rev3/datasheet/datasheet.md +++ b/content/hardware/02.hero/boards/uno-rev3/datasheet/datasheet.md @@ -126,9 +126,6 @@ Sample sketches for the Arduino XXX can be found either in the “Examples” me ### Online Resources Now that you have gone through the basics of what you can do with the board you can explore the endless possibilities it provides by checking exciting projects on ProjectHub **[5]**, the Arduino Library Reference **[6]** and the online store **[7]** where you will be able to complement your board with sensors, actuators and more -### Board Recovery -All Arduino boards have a built-in bootloader which allows flashing the board via USB. In case a sketch locks up the processor and the board is not reachable anymore via USB it is possible to enter bootloader mode by double-tapping the reset button right after power up. - ## Connector Pinouts ![Pinout](assets/pinout.png) diff --git a/content/hardware/03.nano/boards/nano-every/datasheet/datasheet.md b/content/hardware/03.nano/boards/nano-every/datasheet/datasheet.md index 46c28082e6..fadc947311 100644 --- a/content/hardware/03.nano/boards/nano-every/datasheet/datasheet.md +++ b/content/hardware/03.nano/boards/nano-every/datasheet/datasheet.md @@ -138,9 +138,6 @@ All Arduino IoT enabled products are supported on Arduino IoT Cloud which allows ### Online Resources Now that you have gone through the basics of what you can do with the board you can explore the endless possibilities it provides by checking exciting projects on ProjectHub **[13]**, the Arduino Library Reference **[14]** and the on line store **[15]** where you will be able to complement your board with sensors, actuators and more. -### Board Recovery -All Arduino boards have a built-in bootloader which allows flashing the board via USB. In case a sketch locks up the processor and the board is not reachable anymore via USB it is possible to enter bootloader mode by double-tapping the reset button right after power up. - ## Connector Pinouts ![Pinout](assets/pinout.png) diff --git a/content/hardware/03.nano/boards/nano/datasheet/datasheet.md b/content/hardware/03.nano/boards/nano/datasheet/datasheet.md index d676dd7090..48212580f7 100644 --- a/content/hardware/03.nano/boards/nano/datasheet/datasheet.md +++ b/content/hardware/03.nano/boards/nano/datasheet/datasheet.md @@ -104,9 +104,6 @@ Sample sketches for the Arduino® can be found either in the “Examples” menu ### Online Resources Now that you have gone through the basics of what you can do with the board you can explore the endless possibilities it provides by checking exciting projects on ProjectHub **[5]**, the Arduino® Library Reference **[6]** and the online store **[7]** where you will be able to complement your board with sensors, actuators and more. -### Board Recovery -All Arduino boards have a built-in bootloader which allows flashing the board via USB. In case a sketch locks up the processor and the board is not reachable anymore via USB it is possible to enter bootloader mode by double-tapping the reset button right after power up. - ## Connector Pinouts ![Power Tree of Arduino Nano](./assets/nano_connector_pinout.png) diff --git a/content/hardware/08.kits/maker/make-your-uno-kit/datasheet/datasheet.md b/content/hardware/08.kits/maker/make-your-uno-kit/datasheet/datasheet.md index 9bd9eb68e9..499571bfa5 100644 --- a/content/hardware/08.kits/maker/make-your-uno-kit/datasheet/datasheet.md +++ b/content/hardware/08.kits/maker/make-your-uno-kit/datasheet/datasheet.md @@ -238,9 +238,6 @@ Sample sketches for the **UNO** can be found either in the “Examples” menu i #### Online Resources Now that you have gone through the basics of what you can do with the board you can explore the endless possibilities it provides by checking exciting projects on ProjectHub [4], the Arduino Library Reference [5] and the online store [6] where you will be able to complement your board with sensors, actuators and more. -#### Board Recovery -All Arduino boards have a built-in bootloader which allows flashing the board via USB. In case a sketch locks up the processor and the board is not reachable anymore via USB it is possible to enter bootloader mode by double-tapping the reset button right after a power-up. - ### Connector Pinouts ![Make Your UNO main board pinout](assets/pinout.png)