Skip to content

Commit f9c9ca7

Browse files
esmerelcnorris-cs
andauthored
Apply suggestions from code review
Co-authored-by: Craig Norris <[email protected]> Signed-off-by: Lynette Miles <[email protected]>
1 parent c39a81c commit f9c9ca7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pipeline/inputs/serial-interface.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ This plugin has the following configuration parameters:
1717

1818
## Get started
1919

20-
To retrieve messages over the Serial interface, you can run the plugin from the command line or through the configuration file:
20+
To retrieve messages by using the Serial interface, you can run the plugin from the command line or through the configuration file:
2121

2222
### Command line
2323

24-
The following example loads the input serial plugin where it set a `Bitrate` of `9600`, listens from the `/dev/tnt0` interface and uses the custom tag `data` to route the message.
24+
The following example loads the input serial plugin where it set a `Bitrate` of `9600`, listens from the `/dev/tnt0` interface, and uses the custom tag `data` to route the message.
2525

2626
```shell
2727
fluent-bit -i serial -t data -p File=/dev/tnt0 -p BitRate=9600 -o stdout -m '*'
@@ -102,26 +102,26 @@ You can emulate a serial interface on your Linux system and test the serial inpu
102102

103103
### Build and install the `tty0tty` module
104104

105-
1. Download the sources
105+
1. Download the sources:
106106

107107
```bash
108108
git clone https://github.com/freemed/tty0tty
109109
```
110110

111-
1. Unpack and compile
111+
1. Unpack and compile:
112112

113113
```bash
114114
cd tty0tty/module
115115
make
116116
```
117117

118-
1. Copy the new kernel module into the kernel modules directory
118+
1. Copy the new kernel module into the kernel modules directory:
119119

120120
```bash
121121
sudo cp tty0tty.ko /lib/modules/$(uname -r)/kernel/drivers/misc/
122122
```
123123

124-
1. Load the module
124+
1. Load the module:
125125

126126
```bash
127127
sudo depmod

0 commit comments

Comments
 (0)