Rename cli.ino to console.ino

This commit is contained in:
Oleg Kalachev
2026-08-19 05:08:29 +03:00
parent b72c35f58c
commit 36b58f26e5
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ Firmware source files are located in `flix` directory.
* [`control.ino`](../flix/control.ino) — control subsystem, three-dimensional two-level cascade PID controller.
* [`motors.ino`](../flix/motors.ino) — PWM motor output control.
* [`mavlink.ino`](../flix/mavlink.ino) — interaction with QGroundControl or [pyflix](../tools/pyflix) via MAVLink protocol.
* [`cli.ino`](../flix/cli.ino) — serial and MAVLink console.
* [`console.ino`](../flix/console.ino) — serial and MAVLink console.
Utility files:
@@ -60,7 +60,7 @@ To write into the console, `print()` function is used. This function sends data
print("Test value: %.2f\n", testValue);
```
In order to add a console command, modify the `doCommand()` function in `cli.ino` file.
In order to add a console command, modify the `doCommand()` function in `console.ino` file.
> [!IMPORTANT]
> Avoid using delays in in-flight commands, it will **crash** the drone! (The design is one-threaded.)