Skip to content

Commit f5ea20c

Browse files
authored
Merge pull request #769 from senthil4321/master
Fix spelling errors in the documentation
2 parents 2aa2415 + 5219558 commit f5ea20c

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,13 @@ the links to learn more about the respective concept.
155155

156156
There is still lots to discover about DLT. If you turn on the generation of
157157
manpages with the cmake option ```-DWITH_MAN=ON``` you can learn how to
158-
configure DLT to exactly suit your needs, how to control the behvaiour of
158+
configure DLT to exactly suit your needs, how to control the behaviour of
159159
running instances and how to interface DLT with existing system through
160160
provided adaptors.
161161

162162
The man pages are generated with *pandoc*, which also needs *asciidoc* as dependency.
163163

164-
Build manpages (initally or because something changed) with e.g.
164+
Build manpages (initially or because something changed) with e.g.
165165
```bash
166166
mkdir build
167167
cd build

ReleaseNotes.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ Back to [README.md](../README.md)
675675
* Implemented Dlt MultiNode to connect DLT Daemons running on different operating systems
676676
* Daemon shutdown: fixed memory leaks and missing removal of created sockets
677677
* DltLogstorage: reduce writing to internal storage device as much as possible
678-
* Control appliction to support offline log storage trigger implemented
678+
* Control application to support offline log storage trigger implemented
679679
* Offline log storage to internal and external devices implemented
680680
* Unix socket control interface implemented
681681
* Parse INI files for Offline Logstorage, Multinode and potentially other DLT extensions implmented
@@ -848,9 +848,9 @@ Back to [README.md](../README.md)
848848
### 2.8.0
849849

850850
* [GDLT-115]: Encapsulate user macros
851-
* Fix register app and register context was not stored in buffer when FIFO is full. Other controll messages still not saved in buffer.
851+
* Fix register app and register context was not stored in buffer when FIFO is full. Other control messages still not saved in buffer.
852852
* Create new fifo only when same application registers with different pid.'
853-
* Do not register appliction again, if already registered.
853+
* Do not register application again, if already registered.
854854
* Fixed filetransfer not checking buffer fill level.
855855

856856
### 2.7.0
@@ -866,7 +866,7 @@ Back to [README.md](../README.md)
866866
### 2.6.2
867867

868868
* [GDLT-89] Fixed daemon doesn't sent the persistent log level
869-
* [GDLT-88] Fixed wrong initalization order using offline trace function
869+
* [GDLT-88] Fixed wrong initialization order using offline trace function
870870

871871
### 2.6.1
872872

@@ -936,7 +936,7 @@ Back to [README.md](../README.md)
936936
* [GDLT-36] Prefixing of dlt_version.h fixed
937937
* [GDLT-31] Tracefile content stored different under Ubuntu 64 bit version compared to Ubuntu/Win 32 Bit version fixed
938938
* [GDLT-35] Compile warnings fixed
939-
* [GSW-137] Wrong include gives error on compailing against dlt fixed
939+
* [GSW-137] Wrong include gives error on compiling against dlt fixed
940940

941941
### 2.4.2
942942

@@ -1005,17 +1005,17 @@ Back to [README.md](../README.md)
10051005

10061006
* DLT Viewer (QT)
10071007
* New dlt viewer (QT-based) implementated
1008-
* Moved to seperate project, see extra Release Notes for DLT Viewer (QT)
1008+
* Moved to separate project, see extra Release Notes for DLT Viewer (QT)
10091009
* DLT Viewer (WX) - Deprecated
10101010
* Old dlt viewer (WX) is removed now from package generation
1011-
* Moved to seperate project
1011+
* Moved to separate project
10121012
* Removed filtering of messages during writing to a file
10131013
* DLT library:
10141014
* Functions dlt_file_read_raw() and dlt_file_read_header_raw() added
10151015
* Added support for raw messages in nonverbose mode
10161016
* Injection tables are now dynamically allocated
10171017
* Contexts are now dynamically allocated
1018-
* Added seperate file for platform float types (dlt_float_types.h)
1018+
* Added separate file for platform float types (dlt_float_types.h)
10191019
and used this types.
10201020
Attention: This file must be adapted to each target platform.
10211021
* Removed signal handlers from dlt_user.c; SIGPIPE signal is ignored; atexit() handler still exists
@@ -1024,7 +1024,7 @@ Back to [README.md](../README.md)
10241024
* Small optimization in get_log_info() for one searched application with one searched context,
10251025
which is existing in the context table of the dlt daemon
10261026
* Optional syncing to serial header added
1027-
* Support for keep-alive messages, realized as seperate thread
1027+
* Support for keep-alive messages, realized as separate thread
10281028
* General:
10291029
* Combined dlt-test-user-multi and dlt-test-many to dlt-test-stress
10301030
* Extended dlt-test-client
@@ -1097,7 +1097,7 @@ Back to [README.md](../README.md)
10971097
* DLT daemon: dlt_daemon_process_user_message_unregister_application() also removes now
10981098
all corresponding contexts
10991099
* DLT daemon: Added security check to dlt_daemon_control_get_log_info() in order to avoid crash
1100-
which occured under special circumstances
1100+
which occurred under special circumstances
11011101
* DLT daemon: Register app now opens the connection to the DLT library,
11021102
unregister app closes the connection (was before in register context)
11031103
* Added -lrt to package config file
@@ -1124,8 +1124,8 @@ Back to [README.md](../README.md)
11241124
* A client library for writing console client applications (Linux) is now available.
11251125
dlt-receiver and dlt-test-client uses this new library code
11261126
* General:
1127-
* Added seperate file for DltMostMessageHeader type
1128-
* Added seperate file for DLT protocol values
1127+
* Added separate file for DltMostMessageHeader type
1128+
* Added separate file for DLT protocol values
11291129
* Relaxed checks for passing trace messages to plugin handler
11301130
* Tested and improved MOST plugin
11311131
* Support for float (32 Bit) and double (64 Bit) values

doc/dlt-system.conf.5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ Map journal log levels to DLT log levels.
9595

9696
## JournalUseOriginalTimestamp
9797

98-
Use the original timestamp (uptime when the event actually occured) as DLT timestamp.
98+
Use the original timestamp (uptime when the event actually occurred) as DLT timestamp.
9999

100100
Default: 1
101101

102102
## JournalUseUptimeOnly
103103

104-
Ignore the timestamp, show uptime (when the event actually occured) only in payload.
104+
Ignore the timestamp, show uptime (when the event actually occurred) only in payload.
105105

106106
Default: 0
107107

doc/dlt_design_specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ The public available include directory contains the following header files:
785785
| dlt_user.h | Include file for dlt_user.c, contains the "User API" functions |
786786
| dlt_user_macros.h | Include file for dlt_user.c, contains the "User API" macros |
787787
| dlt_client.h | Include file for dlt_client.c |
788-
| dlt_protocol.h | DLT protocol specfic definitions and macros |
788+
| dlt_protocol.h | DLT protocol specific definitions and macros |
789789
| dlt_types.h | Definition of types, must be adapted to the target architecture and compiler toolchain. |
790790

791791
### Description of used structures in implementation

doc/dlt_for_developers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ if (dlt_user_log_write_start_id(&ctx, &ctxdata, DLT_LOG_INFO, 42) > 0) {
708708

709709
#### Using custom timestamps
710710

711-
The timestamp that is transmitted in the header of a DLT message is usually generated automatically by the library itself right before the message is sent. If you wish to change this, e.g. because you want to indicate when an event occured, rather than when the according message was assembled, you can supply a custom timestamp. Compared to the example above, two macros are defined for convenience:
711+
The timestamp that is transmitted in the header of a DLT message is usually generated automatically by the library itself right before the message is sent. If you wish to change this, e.g. because you want to indicate when an event occurred, rather than when the according message was assembled, you can supply a custom timestamp. Compared to the example above, two macros are defined for convenience:
712712

713713
```
714714
uint32_t timestamp = 1234567; /* uptime in 0.1 milliseconds */

0 commit comments

Comments
 (0)