Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is available under [LICENSE_FDL](LICENSE_FDL).\
The changelog is placed at the bottom of this document.
## Table of contents
@ -73,6 +73,16 @@ Each port operates independently and can function in the following modes:
## 2. User manual
### 2.1. Configuration mode
Device configuration can be done through any port (USB, UART1, UART2). To enter configuration mode, use the `config` command.
UART ports operate with the following parameters:
- Baudrate: 9600 Bd
- Data bits: 8
- Stop bits: 1
- Parity control: none
In the case of a USB port, these settings do not matter.
_Backspace_ must be encoded as _Control+H_ (standard backspace, ASCII code 8).
> Note! If the port is in KISS mode (default after startup), the entered characters will not be visible.
> Note! After completing the configuration, remember to save it to memory using the `save` command.
@ -340,6 +350,8 @@ If *viscous delay* functionality is enabled for the matched alias, the completed
In addition, the *viscous delay* buffer is regularly refreshed. If the specified time has passed, and the packet has not been removed from the buffer (see *the beginning of this section*), its hash is saved to the duplicate filter buffer, the packet is transmitted, and removed from the *viscous delay* buffer.
## 4. Documentation changelog
### 2024/05/16
- Default UART parameters and backspace handling - Piotr Wilkoń