mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 04:35:25 -06:00
* manual packet gen * Added tlmPkt to deployment * Packet files * Fixes to packet gen script * format python, updated packet files * spelling fixes * integrating packet autocoder * final updates for telemetry packetization * formatting telemetry packetizer cpde * moving tlm packetizer configuration file * resetting stock telemetry channelizer * missed packetizer setup call * fixing autocoding miss-match with Svc::TlmChan Co-authored-by: M Starch <LeStarch@googlemail.com>
14 lines
341 B
Bash
Executable File
14 lines
341 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
script_dir=$(dirname $0)
|
|
|
|
# $0 = this script
|
|
# $1 = packet file
|
|
# $2 = deployment build cache (ex. Ref/build-fprime-automatic-native)
|
|
|
|
export PYTHONPATH=$script_dir/../src
|
|
export BUILD_ROOT=$script_dir/../../../:$2:$2/F-Prime
|
|
echo "BUILD_ROOT=$BUILD_ROOT"
|
|
|
|
# get python from the path
|
|
python3 $script_dir/tlm_packet_gen.py $1 |