From 92c2faa858c8251044f2ac5e99e48250d1dd4022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Heredero?= Date: Thu, 19 Oct 2023 11:44:15 +0200 Subject: [PATCH] some exemple for plantuml --- readme.md | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/readme.md b/readme.md index b4228e1..d7e374a 100644 --- a/readme.md +++ b/readme.md @@ -7,29 +7,14 @@ - Demonstrate the right functioning of the XF by comparing and documenting the output created by the tests running on the *Embedded System* # Time Algorithm -``` mermaid -flowchart TD - insert[it.subRelTick\ninsert] - - - A(Start)--> B[relTime = 0] - B --> C{relTime < desireTime} - C --> |Yes| D[it++] - D --> E{ End ? } - E --> |No| F[it.getRelTick] - F --> C - E --> |Yes| insert -``` - ```plantuml -@startuml component -actor client -node app -database db - -db -> app -app -> client +@startuml +(*) --> "relTime = 0" as rt0 +rt0 --> if goForward then +-left--> [false] "insert" +else +-right--> [true] "do Stuff" @enduml ```