From 0a2c48c69aabbcb9a290098bc324ef1872d87125 Mon Sep 17 00:00:00 2001 From: Hamish Willee Date: Wed, 8 Apr 2020 10:36:44 +1000 Subject: [PATCH] airframe markdown script: Improve header text. --- Tools/px4airframes/markdownout.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Tools/px4airframes/markdownout.py b/Tools/px4airframes/markdownout.py index ab09064e41..6acccc03c3 100644 --- a/Tools/px4airframes/markdownout.py +++ b/Tools/px4airframes/markdownout.py @@ -5,9 +5,10 @@ import os class MarkdownTablesOutput(): def __init__(self, groups, board, image_path): result = ("# Airframes Reference\n" - "> **Note** **This list is auto-generated from the source code**.\n" + "> **Note** **This list is [auto-generated](https://github.com/PX4/Firmware/edit/master/Tools/px4airframes/markdownout.py) from the source code**.\n" "> \n" - "> The **AUX** channels are only available on Pixhawk Boards (labeled with **AUX OUT**).\n" + "> **AUX** channels may not be present on some flight controllers.\n" + "> If present, PWM AUX channels are commonly labelled **AUX OUT**.\n" "> \n" "\n")