px4-firmware/Tools/serial/rc.serial_port.jinja

26 lines
703 B
Plaintext
Raw Normal View History

{# jinja template to generate the serial port rc.uart_port script. #}
# serial port script generated with generate_serial_config.py
set SERIAL_DEV none
{% for serial_device in serial_devices -%}
if param compare "$PRT" {{ serial_device.index }}; then
if [ "x$PRT_{{ serial_device.tag }}_" = "x" ]; then
set SERIAL_DEV {{ serial_device.device }}
set BAUD_PARAM SER_{{ serial_device.tag }}_BAUD
set PRT_{{ serial_device.tag }}_ 1
{% if not constrained_flash -%}
else
echo "Conflicting config for {{ serial_device.device }}"
{% endif -%}
fi
fi
{% endfor %}
2021-04-01 04:39:57 -03:00
{% for config in ethernet_configuration -%}
if param compare "$PRT" {{ config.index }}; then
set SERIAL_DEV ethernet
fi
{% endfor %}