Flipper Zero
View on Wikipedia
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
Flipper Zero running Sub-GHz radio scanning mode | |
| Manufacturer | Flipper Devices Inc. |
|---|---|
| Release date | August 2020 |
| Operating system | FreeRTOS |
| CPU | STMicroelectronics STM32WB55 |
| Memory |
|
| Removable storage | Micro SD (up to 256 GB) |
| Display |
|
| Sound | Buzzer (100–2,500 Hz): 87 dB |
| Connectivity |
|
| Power | LiPo 2,000 mAh |
| Dimensions | 100 x 40 x 25 mm |
| Weight | 104 grams (3.7 oz) |
| Website | flipperzero |
The Flipper Zero is a portable multi-functional hacking device developed for interaction with access control systems.[1] The device is able to read, copy, and emulate RFID and NFC tags, radio remotes, iButtons, and digital access keys. It also has a GPIO interface.[2] It was first announced in August 2020 through the Kickstarter crowdfunding campaign, which raised $4.8 million.[3] The first devices were delivered to backers 18 months after completion of the crowdfunding campaign. The device's user interface embodies a pixel-art dolphin virtual pet. The interaction with the virtual pet is the device's core game mechanic. The usage of the device's functions defines the appearance and emotions of the pet.[4]
In the built-in game, the main mechanism to "upgrade" the dolphin is to use the various hacking tools. While harmless uses (like as a remote control for a television, or carbon dioxide sensor) exist, some of the built-in tools have potential criminal uses, including RFID skimming, Bluetooth spamming (spamming a Bluetooth connection, crashing a person's phone), and emulation of RFID chips such as those found in identification badges, using the built-in radio cloner to open garage doors, unlocking cars, and functioning as a wireless BadUSB.
Origin
[edit]The device was developed by Alex Kulagin and Pavel Zhovner in 2019.[5] They started raising funds on Kickstarter.[5]
Overview
[edit]Flipper Zero is designed for interaction with various types of access control systems, radio protocols, RFID, near-field communication (NFC), and infrared signals.[6][7] To operate the device, a computer or a smartphone is not required; it can be controlled via a 5-position D-pad and a separate back button. Flipper Zero has a monochrome orange backlight LCD screen with a resolution of 128 × 64 pixels. For connection with external modules, the device has general-purpose input/output (GPIO) pinholes on the top side. User data and firmware updates are stored on a microSD card. Some actions, such as firmware or user data update, require a connection to a computer or a smartphone with the developer's software installed.
Technical specification
[edit]The electronic schematics[9] and firmware[10] of the Flipper Zero project are open sourced under the GNU General Public License. At the same time, the device does not fit into the open-source hardware category because the printed circuit boards are not open-sourced, which does not allow enthusiasts to make their own copies of the device without knowledge of electrical engineering.[citation needed]
Hardware
[edit]Flipper Zero's hardware consists of four PCB modules connected by flexible cables. The battery is positioned in the center of the device between three of the PCBs.
- Main PCB (motherboard) – contains core components, including the main processor (STM32WB55), GPIO breakout pins, LCD display, Sub-GHz chip and its antenna, Bluetooth antenna, microSD card slot, battery controller, USB Type-C port, and membrane switches for the D-pad. All additional PCBs connect to the main PCB via flexible cables.
- Infrared and iButton PCB – a small board equipped with an infrared receiver (TSOP-75338) and three infrared LEDs for transmitting infrared signals. Includes three pogo pins for iButton (1-Wire) tags and a piezo buzzer (BCE-MX8530A) for audio feedback.
- NFC PCB – contains the NFC chip (STM ST25R3916) along with analog circuitry for 125 kHz RFID.
- Dual-Band RFID Antenna PCB – features two passive coil antennas: one for 13.56 MHz NFC communication and another for 125 kHz RFID systems.
Microcontroller (MCU)
[edit]


Flipper Zero is based on a dual-core ARM architecture STM32WB55 microcontroller, which has 256 KB of RAM and 1 MB of Flash storage. The first core is a 64 MHz Cortex-M4 which runs the main firmware. The second core is a 32 MHz Cortex-M0 which runs STMicroelectronics proprietary firmware that implements the Bluetooth Low Energy protocol. Secret keys stored in the Secure Enclave of STM32WB55 are used to decrypt cryptographic keys on the fly, which are then applied to decode Sub-GHz protocols. This mechanism allows the device to handle encrypted communication for Sub-GHz protocols. However, the encryption used is not entirely secure and primarily serves as a form of obfuscation rather than robust protection. Its purpose is to make reverse engineering more challenging, but it does not provide absolute security.
Sub-GHz radio
[edit]For radio transmitting and receiving in the 300–900 MHz radio frequency range, a Texas Instruments CC1101[11] chip is used, which supports amplitude-shift keying (ASK) and frequency-shift keying (FSK) modulations. Unlike software-defined radio, the CC1101 chip cannot capture raw radio signals. This limitation requires the user to pre-configure the modulation parameters before receiving a radio signal, otherwise the signal will be received incorrectly.
Infrared
[edit]The infrared transceiver in Flipper Zero consists of a digital receiver and an LED circuit. The receiver, based on the TSOP-75338 module, decodes incoming infrared signals. Infrared transmission is managed by three LEDs directly connected to the MCU, which controls the signal output.
NFC and 125 kHz RFID
[edit]The NFC subsystem is based on the STM ST25R3916 chip, which is responsible for reading and emulating high-frequency cards.[12] The 125 kHz low-frequency RFID functionality in Flipper Zero is implemented primarily through software running on the MCU, without a dedicated RFID chip.[citation needed] It also supports reading RFID tags in the 110–140 kHz range, albeit with a reduced reading distance.[citation needed]
Hardware expansion
[edit]In February 2024, a video game module was released for the Flipper Zero by its makers.[13] The device allows the Flipper to be used as a game controller or connected to a TV and is based around the Raspberry Pi Pico.[13]
Firmware
[edit]
The Flipper Zero firmware is based on the FreeRTOS operating system, with its own software abstraction over the hardware layer. The firmware is mostly written in the C programming language, with occasional use of C++ in third-party modules. The system uses multitasking in combination with an event-driven architecture to organize the interaction of applications and services executed in a single address space and communicating through a system of queues and events. The system can be executed from both random-access memory (RAM) and read-only memory (ROM). Execution from RAM is used to deliver over-the-air (OTA) firmware updates.
The firmware consists of the following components:
- FuriCore – provides an API for interaction with the scheduler and multithreading. FuriCore abstracts and extends the functionality of the FreeRTOS scheduler and adds additional system primitives.
- FuriHal – provides an API for interaction with hardware.
- Services and applications – the main functionality of the device. Sub-GHz, Infrared, RFID, NFC, etc are applications for user interaction. Graphical user interface (GUI), command-line interface (CLI), Notification, Storage, etc are additional APIs for applications development.
- A set of libraries and drivers – covers various communication protocols, device drivers, file system drivers, and developer tools.
User and system data is stored in built-in flash memory, which is based on the LittleFS library. Interaction with the file system on the SD card is implemented using the FatFs library.
The build system is based on the SCons tool with additional tooling written in Python. For compilation, the system uses its own open toolchain based on GNU Compiler Collection.
Applications
[edit]This section needs additional citations for verification. (March 2025) |
Sub-GHz
[edit]Flipper Zero has a built-in module that can read, store, and emulate remote controls, allowing it to receive and send radio frequencies between 300 and 928 MHz. These switches, radio locks, wireless doorbells, remote controls, barriers, gates, smart lighting, and other devices can all be operated with these controls. Using Sub-GHz Flipper Zero can also receive and decode the data from many weather stations.
125 kHz RFID
[edit]Flipper Zero is compatible with low-frequency (LF) radio frequency identification (RFID), which is used in supply chain tracking systems, animal chips, and access control systems. LF RFID cards typically don't offer high levels of security, in contrast to NFC cards. Numerous form factors of this technology are available, including plastic cards, key fobs, tags, wristbands, and animal microchips. A low-frequency RFID module in the Flipper Zero can read, save, simulate, and write LF RFID cards.
NFC
[edit]NFC technology, which is used in smart cards for access control and cards, and digital business cards, is compatible with Flipper Zero. The 13.56 MHz NFC module has the ability to imitate, read, and store these cards. An NFC card is a transponder with a unique identification (UID), and rewritable memory for data storage. When placed close to a reader, NFC cards transmit the needed data.
Infrared
[edit]Flipper Zero can read and transmit signals that use infrared light (IR) such as TVs, air conditioners, or audio devices. It can learn and save infrared remote controls or use its own Universal remotes.
GPIO and modules
[edit]Flipper Zero explores hardware, flash firmware, debugging, and fuzz. It is able to function as a USB converter for UART, SPI, or I2C. The built-in GPIO pins connect to hardware, operate by buttons, send out code, and display messages on the LCD screen.
iButton
[edit]The Flipper Zero has an iButton connector to allow it to read and emulate iButton contact keys.[14]
BadUSB
[edit]BadUSB devices have the ability to alter system settings, unlock backdoors, recover data, launch reverse shells, and do any other physical access-based actions. Flipper Zero can function as a BadUSB and, when connected to an insecure computing device, acts as a keyboard-like Human interface device (HID). Commands (the payload) are injected and executed using DuckyScript (the macro scripting language developed as part of the 'USB Rubber Ducky' BadUSB project).[15]
U2F (Universal 2nd Factor)
[edit]- Use the flipper as a second authentication factor for your Google account and others
HID controllers
[edit]Flipper Zero can replace certain HID (human interface device) controllers. This allows it to interact with your phone or computer. It can remotely control media players, computer keyboards or mouse, presentations, and more.
- Keynote: Presentations remote
- Keyboard: Double as a keyboard for a computer
- Media: Controls media on a computer, camera remote control for a phone
- Mouse: Double as a mouse for a computer
- TikTok Controller: Control TikTok app on a phone
- Mouse Jiggler: Duplicate mouse movements on a computer to keep computer showing as active at all times
- PTT : use the flipper as a PTT (push to talk) controller / wireless PTT remote
Bans, seizure, police bulletin and other incidents
[edit]U.S. Customs seizure and release
[edit]In late 2022, U.S. Customs and Border Protection seized a shipment of 15,000 devices, but they were eventually released.[16][17]
Amazon ban
[edit]On 7 April 2023, Amazon banned sales of the Flipper Zero via their site for being a "card skimming device".[18]
Brazil seizures
[edit]In 2023 people in Brazil who ordered Flipper Zeros reported that their orders had been seized by Anatel.[19] According to the Electronic Frontier Foundation, Anatel has flagged the devices as being a tool for criminal purposes, making the certification process complicated.[19] Users have tried getting their devices certified, but to no avail.[19] The EFF has said that the seizures would limit the ability of Brazilian cybersecurity researchers to conduct research, as they have legitimate uses for the device.[19]
Police bulletin on Flipper Zero
[edit]In August 2023, The Daily Dot published an article on a bulletin for police officers published by the South Dakota Fusion Centre.[16] The document suggested that extremists might use the device to bypass access control systems controls, particularly on power stations.[16] The bulletin admitted there was no concrete evidence of plans by said extremists to use the device, though interest had been expressed on online forums.[16]
Flipper CEO Pavel Zhovner was shown a copy of the bulletin and said that the Flipper Zero had been deliberately designed to not affect modern access control systems.[16] He also pointed out that the bulletin itself said that gates at power stations were not inherently vulnerable to the device but that older gates might be.[16]
Gatwick seizure
[edit]On 27 September 2023 a security staff member at Gatwick Airport confiscated a Flipper Zero from Vitor Domingos due to security concerns.[20] The device was then handed over to Sussex Police.[20]
Midwest FurFest Bluetooth Low Energy attack
[edit]In September 2023 the ability to launch Bluetooth Low Energy spam attacks with a Flipper Zero was demonstrated by a security researcher known as 'Techryptic'.[21] A custom Flipper Zero firmware was developed shortly afterward that could launch spam attacks against Android devices and Microsoft Windows computers.[21] An Android app to launch BLE attacks was developed shortly afterwards.[21]
At the 2023 Midwest FurFest attendees reported severe disruption of Square payment readers and an insulin pump controller crashed due to the BLE spam.[21] A researcher known as Remy said to Bleeping Computer: "For BTLE enabled medical equipment, at minimum a disruption results in a degraded quality of life for those affected," adding "Some conditions may not be life threatening to have disruptions. Others may not be so lucky."[21]
As a result, a Python script was developed by the Wall of Flippers project for Linux and Windows to detect BLE spam attacks coming from Flipper and Android devices.[21][22]
Proposed Canadian ban
[edit]In February 2024, Innovation, Science, and Economic Development Canada announced that they had the intention of banning the Flipper Zero and other devices that could be used to clone wireless signals for remote entry in response to a significant increase in auto thefts.[23]
On 20 March 2024, ISED announced that it would ban the use of the Flipper for illegal acts, but not ban it outright.[24]
References
[edit]- ^ "Flipper Zero turns hacking into a Tamagotchi-style game". Engadget. Archived from the original on 16 April 2023. Retrieved 15 March 2022.
- ^ "Meet Flipper, the Tamagotchi You Feed by Hacking Stuff". Vice. 5 January 2021. Archived from the original on 15 May 2023. Retrieved 15 March 2022.
- ^ "Flipper Zero raising a staggering $4.88 million on a Kickstarter". Hackaday. 2 September 2020. Archived from the original on 5 June 2023. Retrieved 30 June 2022.
- ^ Janssen, Gerard (2022). Hackers: over de vrijheidsstrijders van het internet. Amsterdam: Thomas Rap. p. 145. ISBN 9789400408371. OCLC 1259050992.
- ^ a b Rubio, Isabel (11 April 2023). "Flipper Zero: The 'tamagotchi for hackers' goes viral on TikTok". El País. Archived from the original on 21 August 2023. Retrieved 21 August 2023.
- ^ "This Unassuming Little Device Can Hack Your Smart Home". Gizmodo. 10 March 2021. Archived from the original on 1 June 2023. Retrieved 28 May 2022.
- ^ "How The Flipper Zero Hacker Multitool Gets Made And Tested". Hackaday. 24 July 2021. Archived from the original on 1 June 2023. Retrieved 30 June 2022.
- ^ Edwards, Nathan (24 July 2023). "The Flipper Zero has an app store now". The Verge. Archived from the original on 3 August 2023. Retrieved 3 August 2023.
- ^ "Flipper Zero Electronic Schematics". docs.flipperzero.one. Archived from the original on 19 July 2022. Retrieved 30 June 2022.
- ^ "Flipper Zero Firmware Source Code". GitHub. Archived from the original on 30 June 2022. Retrieved 30 June 2022.
- ^ "CC1101 – Low-power Sub-1 GHz wireless transceiver". ti.com. Archived from the original on 1 July 2022. Retrieved 30 June 2022.
- ^ "Flipper Zero NFC hardware". docs.flipper.net. Archived from the original on 28 August 2025. Retrieved 16 September 2025.
- ^ a b Ropek, Lucas (13 February 2024). "Turn Your Flipper Zero Into a Controller With the New Video Game Module". Gizmodo. Retrieved 5 March 2024.
- ^ Kingsley-Hughes, Adrian (3 January 2023). "Flipper Zero: Geeky toy or serious security tool?". ZDNET. Archived from the original on 21 November 2023. Retrieved 21 November 2023.
- ^ Faife, Corin (16 August 2022). "The new USB Rubber Ducky is more dangerous than ever". The Verge. Vox Media. Retrieved 1 April 2024.
The beloved hacker tool can now pwn you with its own programming language... It ships with a major upgrade to the DuckyScript programming language, which is used to create the commands that the Rubber Ducky will enter into a target machine.
- ^ a b c d e f Thalen, Mikael (2 August 2023). "EXCLUSIVE: Hacking tool Flipper Zero tracked by intelligence agencies, which fear white nationalists may deploy it against power grid". The Daily Dot. Archived from the original on 3 August 2023. Retrieved 3 August 2023.
- ^ "Your Flipper Zero order updates". cdn.flipperzero.one. Retrieved 10 January 2025.
- ^ Gatlan, Sergiu (7 April 2023). "Flipper Zero banned by Amazon for being a 'card skimming device'". Bleeping Computer. Archived from the original on 17 May 2023. Retrieved 17 May 2023.
- ^ a b c d Toulas, Bill (11 March 2023). "Brazil seizing Flipper Zero shipments to prevent use in crime". Bleeping Computer. Archived from the original on 17 May 2023. Retrieved 17 May 2023.
- ^ a b Thalen, Mikael (29 September 2023). "Airport seizes of Flipper Zero from passenger's luggage over security concerns". The Daily Dot. Archived from the original on 30 September 2023. Retrieved 30 September 2023.
- ^ a b c d e f Toulas, Bill (23 December 2023). "'Wall of Flippers' detects Flipper Zero Bluetooth spam attacks". Bleeping Computer. Retrieved 2 November 2024.
- ^ "Python Tool Fights Bluetooth Spam Threat". 26 December 2023. Retrieved 2 November 2024.
- ^ Canada, Public Safety (8 February 2024). "Federal action on combatting auto theft". www.canada.ca.
- ^ Kan, Michael (20 March 2024). "Canada Walks Back Ban of Flipper Zero, Targets 'Illegitimate' Use Cases". PCMag. Retrieved 24 March 2024.
Flipper Zero
View on GrokipediaHistory and Development
Origins and Crowdfunding
The Flipper Zero originated as a project by Flipper Devices Inc., co-founded by Alex Kulagin and Pavel Zhovner, who sought to create an accessible, portable multi-tool for hardware debugging, penetration testing, and radio protocol analysis. Development began in 2019, evolving from earlier work on access control systems where the need arose for a unified device to simplify prototyping and signal interaction, replacing disparate tools like logic analyzers and RFID readers.[10][5] The concept drew inspiration from the pwnagotchi, a Tamagotchi-like Wi-Fi auditing device, incorporating a dolphin avatar to gamify hacking tasks and make technical operations more engaging for users.[4] This design emphasized open-source hardware and software, positioning it as a "Tamagotchi for hackers" rooted in DIY electronics and ethical security research.[11] To fund initial production, Flipper Devices launched a Kickstarter campaign on July 30, 2020, with a goal of $60,000 over a 30-day period ending August 29, 2020. The project quickly gained traction, securing $1 million in pledges within the first day and ultimately raising $4,882,784 from 37,987 backers, exceeding the target by 8,138%.[11][12] This overwhelming success reflected strong interest from the hacker and maker communities, validating the device's appeal as an affordable entry point for sub-GHz radio emulation, NFC/RFID interaction, and infrared control in a compact, toy-like form factor.[4] The campaign's backers received early units, with shipments commencing in late 2021 after prototype iterations addressed manufacturing challenges.[5]Production and Milestones
The Flipper Zero crowdfunding campaign on Kickstarter, launched on August 27, 2020, concluded successfully on September 27, 2020, raising $4,888,312 from 17,463 backers, far exceeding the $10,000 goal and enabling initial production planning.[11] Production setup was completed by July 2021, with manufacturing commencing on a limited scale amid global semiconductor shortages that constrained component availability, particularly for microchips and display controllers like the ST7565, leading to a switch to the ST7567S variant.[13] Mass production ramped up in November 2021, transitioning from prototype batches to higher volumes, though initial output remained constrained by supply chain issues.[14] The first shipments to early backers began in January 2022, marking the transition from manufacturing to distribution, with gradual scaling to fulfill Kickstarter pledges.[15] By May 13, 2022, over 23,000 units had been shipped to backers, alongside the release of a quick-start guide to aid initial user onboarding amid ongoing production efforts.[16] Subsequent milestones included broader retail availability in 2022, with production lines achieving thousands of units per week by mid-2022, alleviating earlier delays and supporting expanded sales channels.[13]Recent Updates and Expansions
In September 2024, Flipper Devices released the stable version 1.0 of the official Flipper Zero firmware after three years of development in beta and release candidate stages, introducing enhanced stability, new applications for Sub-GHz signal analysis, a rewritten NFC subsystem enabling significantly faster card reading including 2.7 times faster dictionary key matching, an event-driven FreeRTOS-compatible architecture replacing polling methods, support for new card types such as ICODE SLIX and FeliCa Lite-S, dynamic FAL parsers to reduce RAM usage, improved protocol layering for easier expansion, and refined infrared remote control features.[17] Subsequent updates in the 1.x series followed, including version 1.1.2 in November 2024 with optimizations for low-level NFC interactions, FeliCa and MIFARE Ultralight C support, and additional card parsers for better RFID handling.[18] By October 2025, development builds reached version 1.4.0 release candidate status, incorporating further refinements to wireless protocols and GPIO expansions for custom hardware integration.[18] Hardware expansions have centered on modular add-ons to extend core functionalities. The official Video Game Module, featuring a Raspberry Pi RP2040 microcontroller, VGA output, and compatibility with retro gaming emulators, was introduced via the Flipper Devices shop to enable video signal generation and interactive projects beyond pentesting applications.[19] This builds on prior expansions like the 2023 WiFi Dev Board, which added ESP32-based wireless scanning and deauthentication capabilities, but recent community-driven third-party modules—such as multi-function boards integrating nRF24 transceivers, CC1101 sub-GHz chips, and ESP32 WiFi—have proliferated, offering plug-and-play enhancements for mouse jacking and signal replay without official endorsement.[20][21] These developments reflect ongoing iteration driven by user feedback and open-source contributions, with firmware updates distributed via qFlipper desktop software or mobile apps for over-the-air installation, ensuring compatibility with expanding hardware ecosystems while maintaining the device's core open-hardware ethos.[22] No major hardware revisions to the base Flipper Zero unit have been announced as of October 2025, though forum discussions speculate on potential future models like "Flipper One" for advanced debugging.[23]Technical Specifications
Hardware Components
The Flipper Zero is built around the STM32WB55RG microcontroller unit (MCU), which integrates an ARM Cortex-M4 application processor running at 64 MHz and an ARM Cortex-M0+ radio processor at 32 MHz, providing 1024 KB of flash memory and 256 KB of SRAM for efficient operation in embedded tasks.[1] This dual-core architecture enables concurrent handling of application logic and wireless protocols, supporting Bluetooth Low Energy (BLE) version 5.4 with 4 dBm transmit power and -96 dBm receive sensitivity.[1] The device features a 1.4-inch monochrome LCD display with 128x64 pixel resolution, driven by an ST7567 controller via SPI interface, allowing clear visibility of interface elements in various lighting conditions due to its backlit design.[1] User input is managed through a 5-way directional pad and a select button, complemented by additional tactile controls for navigation and function activation.[3] Power is supplied by a 2100 mAh LiPo battery, offering up to 28 days of standby time depending on usage patterns such as radio transmissions and display activity.[1] The enclosure measures 100 mm x 40 mm x 25 mm and weighs 102 grams, constructed from durable polycarbonate, ABS, and PMMA materials for portability and impact resistance.[1] [2] Key radio components include a CC1101 transceiver for sub-GHz operations across 315, 433, 868, and 915 MHz bands with a range up to 50 meters, an ST25R3916 chip for 13.56 MHz NFC supporting protocols like ISO-14443A/B, MIFARE, and FeliCa, and a 125 kHz RFID reader compatible with EM400x, HID, and Indala tags.[1] Infrared capabilities consist of a 940 nm transmitter at 300 mW output and a 950 nm receiver tuned to 38 kHz for remote control emulation and capture.[1] Expansion interfaces feature GPIO pins exposed via a dedicated header for hardware prototyping, a USB-C port for charging and data transfer in BadUSB mode, and support for iButton (1-Wire) emulation through integrated contacts.[1] The hardware comprises four interconnected PCB modules linked by flexible cables, facilitating compact assembly and modularity for maintenance or upgrades.Firmware Architecture
The Flipper Zero firmware is an open-source codebase primarily implemented in the C programming language, supplemented by select components in C++ and ARMv7-M assembly for low-level operations. This structure enables efficient embedded system performance on the device's STM32WB55 microcontroller, which features a dual-core architecture with an ARM Cortex-M4 for application processing and a Cortex-M0+ for radio handling. The firmware's modular design facilitates maintenance, extensibility, and adaptation to hardware variations through distinct directories for core components: thefuri directory houses OS-level primitives and utilities; lib contains drivers and third-party libraries; applications organizes built-in and user applications alongside services; and targets encapsulates hardware-specific configurations.[24]
At the foundation lies the Furi core, a custom framework providing essential abstractions for task scheduling, inter-process communication, memory management, and event handling, effectively serving as the firmware's runtime environment. Furi builds upon FreeRTOS primitives, adapted for the Flipper Zero's requirements, to manage real-time operations without a full-fledged traditional RTOS overhead, ensuring deterministic behavior critical for radio protocols and peripheral interactions. Hardware access is abstracted via the Furi Hardware Abstraction Layer (furi_hal), which isolates platform-dependent code, allowing seamless integration of peripherals like Sub-GHz transceivers, NFC readers, and GPIO interfaces. This layering promotes portability across firmware targets, where differences in board initialization, linker scripts, and SDK data are defined in JSON-based target files, enabling compilation for variants such as the standard Flipper Zero or module-extended setups via inheritance and exclusion rules.[24][25]
Applications operate within a plugin-like model, with built-in firmware apps compiled directly into the binary and external Flipper Application Packages (FAPs) loaded dynamically from the microSD card, supporting rapid prototyping and community contributions. The build process relies on the Flipper Build Tool (fbt), a SCons-based system that automates dependency resolution, cross-compilation with ARM GCC, and flashing, configurable via site_scons for custom targets. Services run as persistent threads managing system resources, such as power regulation and storage, while drivers in lib handle protocol stacks for RFID, infrared, and iButton emulation, ensuring isolation from application logic to prevent crashes from propagating. This architecture balances compactness—total firmware size typically under 1 MB—with functionality, as evidenced by release binaries around 800 KB for version 1.0 as of September 2024.[24][25]