Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/dlt-system.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions doc/dlt-system.conf.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions doc/dlt.conf.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion doc/dlt_for_developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/dlt_gateway.conf.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion doc/dlt_multinode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/console/logstorage/dlt-logstorage-ctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/dlt-daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/dlt_daemon_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/dlt_daemon_event_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/system/dlt-system.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions src/tests/dlt-test-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]++;

Expand All @@ -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]++;

Expand Down Expand Up @@ -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]++;

Expand All @@ -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]++;

Expand Down
Loading