From c78a85f953387ed42b81fff950fafbf21912fde6 Mon Sep 17 00:00:00 2001 From: davidhozic Date: Tue, 13 Jul 2021 19:13:03 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f067d1..fc6d3e2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,8 @@ The LITL library - Linked-list, Input, Timer, Library - Functions: - uint32_t value(); -> Starts the timer and returns the value - void reset(); -> Resets the timer and disables it - - void set_hook(function to call, calling period, pointer of parameter to send to function); [ ONLY AVAILABLE IN INTERRUPT MODE] -> attaches function to the timer which gets called every specified period, then the timer auto reloads. To reset back into normal mode, call this function again but with NULL, 0, NULL as parameters. + - void set_hook(function to call, calling period, pointer of parameter to send to function); + [ ONLY AVAILABLE IN INTERRUPT MODE] -> attaches function to the timer which gets called every specified period, then the timer auto reloads. To reset back into normal mode, call this function again but with NULL, 0, NULL as parameters. - LINKED LIST: - A high language like linked list - It uses a TEMPLATE PARAMETER meaning you can tell it what the variable type will be.