Skip to content

Commit 0630f42

Browse files
authored
Merge pull request #2029 from petterreinholdtsen/comp-authors
Added author information to all HAL components where it was missing
2 parents 9b0a166 + 491a786 commit 0630f42

89 files changed

Lines changed: 89 additions & 7 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/hal/components/abs.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pin out bit is_negative "TRUE if input is negative, FALSE if input is 0 or posit
2323

2424
function _;
2525
license "GPL";
26+
author "John Kasunich";
2627
;;
2728
FUNCTION(_) {
2829
double tmp = in;

src/hal/components/abs_s32.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ pin out bit is_negative "TRUE if input is negative, FALSE if input is 0 or posit
2323

2424
function _ nofp;
2525
license "GPL";
26+
author "Sebastian Kuzminsky";
2627
;;
2728
FUNCTION(_) {
2829
rtapi_s32 tmp = in;

src/hal/components/and2.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ see_also """
2323
\\fBxor2\\fR(9).
2424
""";
2525
license "GPL";
26+
author "Jeff Epler";
2627
;;
2728
FUNCTION(_) { out = in0 && in1; }

src/hal/components/axistest.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ param r float elapsed "Current value of the internal timer";
2020
variable int timer_on;
2121
function update;
2222
license "GPL";
23+
author "Chris S Morley";
2324
;;
2425
extern double fabs(double);
2526

src/hal/components/bin2gray.comp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description """Converts a number into gray-code""";
33
pin in unsigned in "binary code in";
44
pin out unsigned out "gray code out";
55
license "GPL";
6-
author "andy pugh";
6+
author "Andy Pugh";
77
function _ nofp;
88
;;
99
out = (in >> 1) ^ in;

src/hal/components/biquad.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ option extra_setup;
7070
function _;
7171

7272
license "GPL";
73+
author "Peter G. Vavaroutsos";
7374
;;
7475

7576

src/hal/components/blend.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ param rw bit open "If true, select values outside the range 0.0 to 1.0 give valu
2626

2727
function _;
2828
license "GPL";
29+
author "Jeff Epler";
2930

3031
;;
3132

src/hal/components/carousel.comp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ option count_function;
142142
option extra_setup;
143143

144144
license "GPL";
145-
author "andy pugh";
145+
author "Andy Pugh";
146146

147147
variable int inst_sense;
148148
variable int inst_dir;

src/hal/components/charge_pump.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ have a base period of 100,000ns that is 0.0001 seconds and the formula would be
3030
1/(0.0001 x 2) = 5,000 hz or 5 Khz. Two additional outputs are provided that run
3131
a factor of 2 and 4 slower for hardware that requires a lower frequency.""";
3232
license "GPL";
33+
author "Jeff Epler";
3334
;;
3435
FUNCTION(_) {
3536
static int acc;

src/hal/components/clarke2.comp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pin out float x;
1717
pin out float y "cartesian components of output";
1818
function _;
1919
license "GPL";
20+
author "John Kasunich";
2021
;;
2122

2223
/* for the details, google "clarke transform", or see section 3 of

0 commit comments

Comments
 (0)