diff --git a/doc/dlt-system.1.md b/doc/dlt-system.1.md index 279ff3ae1..6b37f07b6 100644 --- a/doc/dlt-system.1.md +++ b/doc/dlt-system.1.md @@ -11,7 +11,7 @@ #DESCRIPTION The DLT system logging process is the central application, which logs system information from the platform. It provides the features -filetransfer, syslog adapater, logging of any kind of files and +filetransfer, syslog adapter, logging of any kind of files and procfilesystem logger. The individual features can be enabled and disabled in the configuration file. diff --git a/doc/dlt-system.conf.5.md b/doc/dlt-system.conf.5.md index 54a8f7e8b..656052f4c 100644 --- a/doc/dlt-system.conf.5.md +++ b/doc/dlt-system.conf.5.md @@ -7,11 +7,11 @@ # DESCRIPTION The DLT system logging process is the central application, which logs system information from the platform. It provides the features -filetransfer, syslog adapater, logging of any kind of files and +filetransfer, syslog adapter, logging of any kind of files and procfilesystem logger. The individual features can be enabled and disabled in the configuration file. -The configuration file dlt-system.conf allows to configure the different runtime behaviour of dlt-system. The configuration file is loaded during startup of dlt-system. +The configuration file dlt-system.conf allows one to configure the different runtime behaviour of dlt-system. The configuration file is loaded during startup of dlt-system. dlt-system loads by default the configuration file /etc/dlt-system.conf. An alternative configuration file can be loaded with the option -c. @@ -121,7 +121,7 @@ The Context Id of the filetransfer. ## FiletransferTimeStartup -Time in seconds after startup of dlt-system when first file is transfered. +Time in seconds after startup of dlt-system when first file is transferred. Default: 0 diff --git a/doc/dlt.conf.5.md b/doc/dlt.conf.5.md index d82531407..015f0122d 100644 --- a/doc/dlt.conf.5.md +++ b/doc/dlt.conf.5.md @@ -8,7 +8,7 @@ The DLT daemon is the central application which gathers logs and traces from different applications, stores them temporarily or permanently and transfers them to a DLT client application, which could run directly on the COVESA system or more likely on some external tester device. -The configuration file dlt.conf allows to configure the different +The configuration file dlt.conf allows one to configure the different runtime behaviour of the dlt-daemon. It is loaded during startup of dlt-daemon. # GENERAL OPTIONS @@ -236,7 +236,7 @@ This value defines the max size of a offline trace file, if offline trace is ena ## OfflineTraceMaxSize -This value defines the max offline Trace memory size, if offline trace is enabled. This value is defined in bytes. If the overall offline trace size is excedded, the oldest log files are deleted, until a new trace file fits the overall offline trace max size. +This value defines the max offline Trace memory size, if offline trace is enabled. This value is defined in bytes. If the overall offline trace size is exceeded, the oldest log files are deleted, until a new trace file fits the overall offline trace max size. Default: 4000000 @@ -276,7 +276,7 @@ If this value is set to a serial device name, e.g. /dev/ttyS0, a serial port is ## RS232Baudrate -The used serial baud rate, if serial loggin is enabled. The RS232DeviceName must be set to enable serial logging. +The used serial baud rate, if serial logging is enabled. The RS232DeviceName must be set to enable serial logging. Default: 115200 diff --git a/doc/dlt_for_developers.md b/doc/dlt_for_developers.md index ffb14b9c1..ddf5eb563 100644 --- a/doc/dlt_for_developers.md +++ b/doc/dlt_for_developers.md @@ -281,7 +281,7 @@ runtime configuration). - Environment variable `DLT_INITIAL_LOG_LEVEL` - There is an environment variable which is called `DLT_INITIAL_LOG_LEVEL`. - It allows to set a per-application-context log level. Refer to + It allows one to set a per-application-context log level. Refer to [Initial Log level](#initial-log-level) for more detail. - Application registers itself at daemon with self-defined log level diff --git a/doc/dlt_gateway.conf.5.md b/doc/dlt_gateway.conf.5.md index 2beed68fa..25d3ab550 100644 --- a/doc/dlt_gateway.conf.5.md +++ b/doc/dlt_gateway.conf.5.md @@ -6,7 +6,7 @@ # DESCRIPTION -The configuration file dlt_gateway.conf allows to configure the different runtime behaviour of gateway in Multinode feature. +The configuration file dlt_gateway.conf allows one to configure the different runtime behaviour of gateway in Multinode feature. The configuration file is written in an INI file format and contains information about different connected passive nodes. diff --git a/doc/dlt_multinode.md b/doc/dlt_multinode.md index 8d1598582..16ece0423 100644 --- a/doc/dlt_multinode.md +++ b/doc/dlt_multinode.md @@ -4,7 +4,7 @@ Back to [README.md](../README.md) ## Overview -MultiNode allows to connect DLT Daemons running on different operating systems, +MultiNode allows one to connect DLT Daemons running on different operating systems, e.g. in a virtualized environment. The central component is the Gateway DLT Daemon which connects external DLT Clients, like the DLT Viewer running on a host computer with Passive DLT Daemons running on nodes without a physical diff --git a/src/console/logstorage/dlt-logstorage-ctrl.c b/src/console/logstorage/dlt-logstorage-ctrl.c index 5fecabea2..fef72a2df 100644 --- a/src/console/logstorage/dlt-logstorage-ctrl.c +++ b/src/console/logstorage/dlt-logstorage-ctrl.c @@ -117,7 +117,7 @@ static void catch_signal(int signo) /** @brief Install a handler for some signals * - * Handler are installed on exit related signals. That allows to exit from + * Handler are installed on exit related signals. That allows one to exit from * the main loop gracefully. */ static void install_signal_handler(void) diff --git a/src/daemon/dlt-daemon.c b/src/daemon/dlt-daemon.c index e9d0518f1..e6f739a9a 100644 --- a/src/daemon/dlt-daemon.c +++ b/src/daemon/dlt-daemon.c @@ -1830,7 +1830,7 @@ int dlt_daemon_local_init_p2(DltDaemon *daemon, DltDaemonLocal *daemon_local, in dlt_get_version(daemon->ECUVersionString, DLT_DAEMON_TEXTBUFSIZE); } - /* Set to allows to maintain logstorage loglevel as default */ + /* Set to allows one to maintain logstorage loglevel as default */ daemon->maintain_logstorage_loglevel = DLT_MAINTAIN_LOGSTORAGE_LOGLEVEL_ON; return 0; diff --git a/src/daemon/dlt_daemon_client.c b/src/daemon/dlt_daemon_client.c index 26f7fdd15..41f6c86b4 100644 --- a/src/daemon/dlt_daemon_client.c +++ b/src/daemon/dlt_daemon_client.c @@ -99,7 +99,7 @@ static inline int8_t getStatus(uint8_t request_log, int context_log) * @param size2 The second message size. * @param verbose Needed for socket closure. * - * @return The amount of data transfered. + * @return The amount of data transferred. */ static int dlt_daemon_client_send_all_multiple(DltDaemon *daemon, DltDaemonLocal *daemon_local, diff --git a/src/daemon/dlt_daemon_event_handler.c b/src/daemon/dlt_daemon_event_handler.c index 8702fc9af..e424f8020 100644 --- a/src/daemon/dlt_daemon_event_handler.c +++ b/src/daemon/dlt_daemon_event_handler.c @@ -276,7 +276,7 @@ int dlt_daemon_handle_event(DltEventHandler *pEvent, /** @brief Find connection with a specific \a fd in the connection list. * * There can be only one event per \a fd. We can then find a specific connection - * based on this \a fd. That allows to check if a specific \a fd has already been + * based on this \a fd. That allows one to check if a specific \a fd has already been * registered. * * @param ev The event handler structure where the list of connection is. diff --git a/src/system/dlt-system.conf b/src/system/dlt-system.conf index 2816daadd..681d58cf1 100644 --- a/src/system/dlt-system.conf +++ b/src/system/dlt-system.conf @@ -90,7 +90,7 @@ FiletransferEnable = 0 # The Context Id of the filetransfer (Default: FILE) FiletransferContextId = FILE -# Time in seconds after startup of dlt-system when first file is transfered (Default: 0) +# Time in seconds after startup of dlt-system when first file is transferred (Default: 0) FiletransferTimeStartup = 0 # Time in ms seconds to wait between two file transfer logs of a single file to DLT. (Default: 10) diff --git a/src/tests/dlt-test-client.c b/src/tests/dlt-test-client.c index bfe1cc37a..67e756c3c 100644 --- a/src/tests/dlt-test-client.c +++ b/src/tests/dlt-test-client.c @@ -877,7 +877,7 @@ int dlt_testclient_message_callback(DltMessage *message, void *data) datalength -= slen; ptr += slen; - /* 2*, as the min and the max is transfered */ + /* 2*, as the min and the max is transferred */ if (datalength == 2 * sizeof(float)) dltdata->test_counter_macro[2]++; @@ -889,7 +889,7 @@ int dlt_testclient_message_callback(DltMessage *message, void *data) datalength -= slen; ptr += slen; - /* 2*, as the min and the max is transfered */ + /* 2*, as the min and the max is transferred */ if (datalength == 2 * sizeof(double)) dltdata->test_counter_macro[2]++; @@ -1900,7 +1900,7 @@ int dlt_testclient_message_callback(DltMessage *message, void *data) datalength -= slen; ptr += slen; - /* 2*, as the min and the max is transfered */ + /* 2*, as the min and the max is transferred */ if (datalength == 2 * sizeof(float)) dltdata->test_counter_function[2]++; @@ -1912,7 +1912,7 @@ int dlt_testclient_message_callback(DltMessage *message, void *data) datalength -= slen; ptr += slen; - /* 2*, as the min and the max is transfered */ + /* 2*, as the min and the max is transferred */ if (datalength == 2 * sizeof(double)) dltdata->test_counter_function[2]++;