Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 1.14 KB

File metadata and controls

57 lines (40 loc) · 1.14 KB

Access platform functionality

This module provides access to platform-specific functionality of the Crazyflie, like various system information and power management features.

Show platform information

This command shows you firmware/CRTP protocol version and platform type of the connected Crazyflie.

cfcli platform info

This will show something like this:

Platform        : Crazyflie 2.1
Firmware        : 2025.09.1 +100
CRTP protocol   : 10

For machine-readable output, add the global --csv flag. Each row is a field,value pair:

cfcli --csv platform info
field,value
platform,Crazyflie 2.1
firmware,2025.09.1 +100
crtp_protocol,10

Power management

The following commands are available for power management of the Crazyflie:

This will reboot the Crazyflie (by power-cycling the STM32 power domain):

cfcli platform reboot

This will put the Crazyflie to sleep and wake it up again (powering off the STM32 and decks):

cfcli platform sleep
cfcli platform wakeup

This will power off the Crazyflie (same as pressing the power button):

cfcli platform power-off