From 01f90c9a6f6533a4522ba83666116e3cc417d058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik@tjaders.com> Date: Wed, 15 Nov 2017 15:55:46 +0100 Subject: [PATCH] Added some analysis --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 8624214..92f8a99 100644 --- a/README.md +++ b/README.md @@ -45,3 +45,9 @@ Will take the string from CODED and output the decoded string into PLAIN ## Analysis +CODED is globally defined, but only read from and never updated. +PLAIN however is mutable and will be changed on the "return" of decode() + +Currently there is only one function so it should be safe, however, with +two tasks this would not be the case. In a typical microcontroller setting +with interrupt handlers it would be similar "safe" like C. -- GitLab