Skip to content

Commit 64b9919

Browse files
committed
Reorganize docs
1 parent df4277f commit 64b9919

File tree

6 files changed

+35
-43
lines changed

6 files changed

+35
-43
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Flipper Zero comes in transportation mode, meaning it's turned off.
2+
3+
{{ gif("/assets/how-to-power-on.mp4") }}
4+
5+
Press and hold :flp-btn-back: for a second to turn it on.

content/usage/general/flashing-firmware.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,28 @@ Choose your distro to install from package manager or [build from sources](http:
3939

4040
## Flashing firmware
4141

42-
### Preparations
42+
### Download latest firmware build
4343

44-
1. Click the image to download latest build of full firmware:
44+
Click the image to download latest build of full firmware:
4545
[![](https://update.flipperzero.one/latest-firmware-banner.png){: width="400"}](https://update.flipperzero.one/full_firmware_latest.bin)
46-
2. Connect your Flipper Zero to the PC over USB
47-
3. [Enter DFU Mode](switching-modes.md#dfu-mode) and check that the LED is blue
4846

49-
### Uploading firmware
47+
### Enter DFU Mode
48+
49+
DFU means Device Firmware Update.
50+
51+
{{ gif("/assets/how-to-dfu.mp4") }}
52+
53+
To enter DFU Mode:
54+
55+
1. Press and hold :flp-btn-left: + :flp-btn-back:, just like for reboot, then wait a second
56+
2. Release :flp-btn-back:, but keep holding :flp-btn-left: for one more second
57+
3. Release :flp-btn-left:
58+
59+
The display should turn off and the LED lights up in blue color, meaning you are in DFU Mode.
60+
61+
Connect your Flipper Zero to the PC over USB.
62+
63+
### Upload firmware
5064

5165
Run this command in the terminal to upload new firmware:
5266
``` sh
@@ -58,8 +72,8 @@ dfu-util -a 0 -s 0x08000000 -D full_firmware_latest.bin
5872

5973
However, if you're trying to flash the firmware **without bootloader**, you must use `0x08008000` in `-s` parameter of `dfu-util`.
6074

61-
### Booting back
75+
### Boot back
6276

63-
After flashing the firmware, [reboot](switching-modes.md#reboot) to exit DFU mode.
77+
After flashing the firmware, [reboot](rebooting.md) to exit DFU mode.
6478

6579
USB cable can be unplugged before or after rebooting.

content/usage/general/rebooting.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
If your Flipper Zero hangs, you can always restart it with a simple shortcut.
2+
3+
{{ gif("/assets/how-to-reboot.mp4") }}
4+
5+
Press and hold :flp-btn-left: + :flp-btn-back: for a second to reboot it.

content/usage/general/switching-modes.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ def define_env(env):
1010
def gif(url):
1111
if not is_absolute(url):
1212
url = urljoin(env.conf['site_url'], url)
13-
return '<video autoplay muted loop playsinline style="width: 100%"> <source src="' + url + '" type="video/mp4"></video>'
13+
return '<video autoplay muted loop playsinline style="width: 60%"> <source src="' + url + '" type="video/mp4"></video>'
1414

1515
@env.macro
1616
def video(url):
1717
if not is_absolute(url):
1818
url = urljoin(env.conf['site_url'], url)
19-
return '<video controls style="width: 100%"> <source src="' + url + '" type="video/mp4"></video>'
19+
return '<video controls style="width: 60%"> <source src="' + url + '" type="video/mp4"></video>'

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ nav:
22
- Welcome: index.md
33
- Usage:
44
- General:
5-
- Switching Modes: usage/general/switching-modes.md
5+
- First Boot: usage/general/first-boot.md
6+
- Rebooting: usage/general/rebooting.md
67
- Flashing Firmware: usage/general/flashing-firmware.md
78

89
site_name: Flipper Zero Docs

0 commit comments

Comments
 (0)