From 9e101ff434230a95fb8f4fd33dc48f4970496d1c Mon Sep 17 00:00:00 2001 From: Sven Hassler Date: Mon, 26 Oct 2015 09:02:54 +0100 Subject: Fixed include paths in dlt_user_manual.txt and dlt_cheatsheet.txt Changed [dlt/dlt.h] to only [dlt.h] Signed-off-by: Lutz Helwing --- doc/dlt_cheatsheet.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/dlt_cheatsheet.txt') diff --git a/doc/dlt_cheatsheet.txt b/doc/dlt_cheatsheet.txt index 2ca1586..736142b 100644 --- a/doc/dlt_cheatsheet.txt +++ b/doc/dlt_cheatsheet.txt @@ -55,7 +55,7 @@ Include the DLT Header To use DLT you have to include the DLT header file in each file you want to use DLT. ---- -#include +#include ---- Register your application @@ -91,7 +91,7 @@ Each context is only allowed to be declared once. You have to provide a unique variable name for your context. ---- -#include +#include DLT_DECLARE_CONTEXT(myContext1); DLT_DECLARE_CONTEXT(myContext2); @@ -101,7 +101,7 @@ DLT_DECLARE_CONTEXT(myContext3); If you want to use a context in another C or CPP file, you can import the context by calling ---- -#include +#include DLT_IMPORT_CONTEXT(myContext1); DLT_IMPORT_CONTEXT(myContext2); @@ -219,7 +219,7 @@ Finally here is a complete example for using DLT: .dlt_example.c ---- #include -#include +#include DLT_DECLARE_CONTEXT(myContext1); DLT_DECLARE_CONTEXT(myContext2); -- cgit v1.2.1