Browse Source

PX4IO params: better documentation

sbg
Lorenz Meier 10 years ago
parent
commit
983243933d
  1. 32
      src/drivers/px4io/px4io_params.c

32
src/drivers/px4io/px4io_params.c

@ -43,9 +43,9 @@
#include <systemlib/param/param.h> #include <systemlib/param/param.h>
/** /**
* Pre-scaler / Inverter for main output channel 1 * Invert direction of main output channel 1
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -54,9 +54,9 @@
PARAM_DEFINE_INT32(PWM_MAIN_REV1, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV1, 0);
/** /**
* Pre-scaler / Inverter for main output channel 2 * Invert direction of main output channel 2
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -65,9 +65,9 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV1, 0);
PARAM_DEFINE_INT32(PWM_MAIN_REV2, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV2, 0);
/** /**
* Pre-scaler / Inverter for main output channel 3 * Invert direction of main output channel 3
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -76,9 +76,9 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV2, 0);
PARAM_DEFINE_INT32(PWM_MAIN_REV3, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV3, 0);
/** /**
* Pre-scaler / Inverter for main output channel 4 * Invert direction of main output channel 4
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -87,9 +87,9 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV3, 0);
PARAM_DEFINE_INT32(PWM_MAIN_REV4, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV4, 0);
/** /**
* Pre-scaler / Inverter for main output channel 5 * Invert direction of main output channel 5
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -98,9 +98,9 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV4, 0);
PARAM_DEFINE_INT32(PWM_MAIN_REV5, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV5, 0);
/** /**
* Pre-scaler / Inverter for main output channel 6 * Invert direction of main output channel 6
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -109,9 +109,9 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV5, 0);
PARAM_DEFINE_INT32(PWM_MAIN_REV6, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV6, 0);
/** /**
* Pre-scaler / Inverter for main output channel 7 * Invert direction of main output channel 7
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1
@ -120,9 +120,9 @@ PARAM_DEFINE_INT32(PWM_MAIN_REV6, 0);
PARAM_DEFINE_INT32(PWM_MAIN_REV7, 0); PARAM_DEFINE_INT32(PWM_MAIN_REV7, 0);
/** /**
* Pre-scaler / Inverter for main output channel 8 * Invert direction of main output channel 8
* *
* Set to 1 to invert the channel. * Set to 1 to invert the channel, 0 for default direction.
* *
* @min 0 * @min 0
* @max 1 * @max 1

Loading…
Cancel
Save