mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 07:28:29 -04:00
ef1c31bd50
Requires digging up old versions of the generator script. The equations have been rearranged somewhat after generation to choose the appropriate method but they do match overall. The auto-substitution of the power functions caused slight changes to the generated syntax so we make those to the real code as well. Delete `yaw_generated.cpp` as we know exactly how to generate it now.
9 lines
160 B
Bash
Executable File
9 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "$0")"
|
|
rm -rf generated # ensure generated directory exists and is empty
|
|
mkdir -p generated
|
|
|
|
./generate_1.py
|
|
./generate_2.py
|