@@ -67,7 +67,7 @@ addf ddt.0 servo-thread
6767----
6868
6969More information on 'loadrt' and 'addf' can be found in the
70- <<cha:basic-hal-reference,Hal Basics>>.
70+ <<cha:basic-hal-reference,HAL Basics>>.
7171
7272To test your component you can follow the examples in the
7373<<cha:hal-tutorial,HAL Tutorial>>.
@@ -307,8 +307,8 @@ parameters, and functions for `prefix`.
307307 in the automatically defined 'rtapi_app_main'.
308308
309309* 'option userspace yes' - (default: no)
310- If specified, this file describes a userspace (ie , non-realtime) component, rather
311- than a regular (ie , realtime) one. A userspace component may not have functions
310+ If specified, this file describes a userspace (i.e. , non-realtime) component, rather
311+ than a regular (i.e. , realtime) one. A userspace component may not have functions
312312 defined by the 'function' directive. Instead, after all the
313313 instances are constructed, the C function `void user_mainloop(void);`
314314 is called. When this function returns, the component exits.
@@ -358,8 +358,8 @@ The result of using any other option is undefined. +
358358 license "GPL"; // indicates GPL v2 or later
359359+
360360For additional information on the meaning of MODULE_LICENSE() and
361- additional license identifiers, see '<linux/module.h>'. or the manual page
362- 'rtapi_module_param(3)'
361+ additional license identifiers, see '<linux/module.h>' or the manual page
362+ 'rtapi_module_param(3)'.
363363+
364364This declaration is *required*.
365365
@@ -456,7 +456,7 @@ when its 'condition' evaluated to a nonzero value.
456456* 'variable_name' - For each variable 'variable_name' there is a macro which allows the
457457 name to be used on its own to refer
458458 to the variable. When 'variable_name' is an array, the normal C-style
459- subscript is used: 'variable_name[idx]'
459+ subscript is used: 'variable_name[idx]'.
460460
461461* 'data' - If "option data" is specified, this macro allows access to the
462462 instance data.
@@ -803,10 +803,10 @@ which creates the following pins:
803803- 3-input AND and XOR gates: logic.2.and, logic.2.xor, logic.2.in-00,
804804 logic.2.in-01, logic.2.in-02
805805
806- === general functions
806+ === General Functions
807807
808- This example shows how to call functions from the main function. +
809- it also shows how to pass reference of HAL pins to those functions. +
808+ This example shows how to call functions from the main function.
809+ It also shows how to pass reference of HAL pins to those functions.
810810
811811[source,c]
812812----
@@ -844,7 +844,7 @@ FUNCTION(_) {
844844}
845845----
846846
847- This component uses two general function to manipulate a HAL bit pin referenced to it. +
847+ This component uses two general function to manipulate a HAL bit pin referenced to it.
848848
849849== Command Line Usage
850850
0 commit comments