Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.6 KB

Change Flippers Display Name.md

File metadata and controls

35 lines (24 loc) · 1.6 KB

Change the Flipper's Display Name

An overview of which lines to change to modify the display name of your Flipper. Note that this does not change the Flipper's name in the OTP memory as this is linked the serial of the device. However, this will change the name displayed in the firmware.

Instructions

Step 1) You will want to start by first forking the existing Flipper Zero firmware that you want to modify such as one of the following:


Step 2) You will need to modify Line 278 of furi_hal_version.c

Change this line from

return *furi_hal_version.name == 0x00 ? NULL : furi_hal_version.name;

to

return "YourNewFlipperName";

Step 3) Once you have modified the code as required, you will need to build your firmware. Step by step instructions on how you build firmware can be found on the Flipper Zero Repository:


Step 4) Flash your new firmware with qFlipper.

I plan to include additional information on how to flash a build at a later time