Skip to content

Commit

Permalink
Create data_storage.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-bs authored Jul 1, 2024
1 parent d87a94e commit e7d9502
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions extras/hw_test/docs/flowcharts/data_storage.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
% mermaidchart.com
---
title: Sensor Data Storage
---
flowchart TB
A[RX Data] --> B{ID already stored?}
B -- Y --> C[Update existing entry]
B -- N --> D{Free entry available\nin RX buffer array?}
D -- Y --> E[Store as new entry]
D -- N --> F[Discard data]
C --> G
E --> G
F --> G[Done]

0 comments on commit e7d9502

Please sign in to comment.