Skip to content

Commit e658311

Browse files
authored
Merge pull request #2557 from petterreinholdtsen/2.9-man-mux-crossref
Added cross references between mux* man pages.
2 parents 905ecd2 + d8e223c commit e658311

5 files changed

Lines changed: 11 additions & 0 deletions

File tree

docs/man/man9/mux_generic.9

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ Each mux has its own HAL function and must be added to a thread separately.
7272
If neither input nor output is of type float then the function is base-thread (non floating-point) safe.
7373
Any mux_generic with a floating point input or output can only be added to a floating-point thread.
7474

75+
.SH SEE ALSO
76+
77+
\fBmux2\fR(9),
78+
\fBmux4\fR(9),
79+
\fBmux8\fR(9),
80+
\fBmux16\fR(9).
81+
7582
.SH AUTHOR
7683
Andy Pugh
7784

src/hal/components/mux16.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ variable int running;
4242
function _;
4343
license "GPL";
4444
author "Chris S Morley";
45+
see_also "mux2(9), mux4(9), mux8(9), mux_generic(9).";
4546
;;
4647
FUNCTION(_) {
4748
int i,num = 0;

src/hal/components/mux2.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ pin in float in0;
66
function _;
77
license "GPL";
88
author "Jeff Epler";
9+
see_also "mux4(9), mux8(9), mux16(9), mux_generic(9).";
910
;;
1011
FUNCTION(_) {
1112
if(sel) out = in1;

src/hal/components/mux4.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pin in float in3;
2727
function _;
2828
license "GPL";
2929
author "Jeff Epler";
30+
see_also "mux2(9), mux8(9), mux16(9), mux_generic(9).";
3031
;;
3132
FUNCTION(_) {
3233
if(sel1) {

src/hal/components/mux8.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ pin in float in7;
4444
function _;
4545
license "GPL";
4646
author "Stuart Stevenson";
47+
see_also "mux2(9), mux4(9), mux16(9), mux_generic(9).";
4748
;;
4849
FUNCTION(_) {
4950
if(sel0) {

0 commit comments

Comments
 (0)