aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien D <seb.douheret@gmail.com>2017-12-01 13:48:12 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-12-14 11:00:26 +0100
commit181851ec87ec913d1727177b3a17438871732827 (patch)
tree5e55fef681b6f7354289e9fb164f0390cbb2f54b
parente0ab61dd6e713300da91120d24db2434a9e69b3e (diff)
Spelling
Change-Id: Ia19a588532226125d218c92464526297480c098d Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r--docs/part-1/1-Architecture.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/part-1/1-Architecture.md b/docs/part-1/1-Architecture.md
index daf1e37..2a2417e 100644
--- a/docs/part-1/1-Architecture.md
+++ b/docs/part-1/1-Architecture.md
@@ -6,23 +6,23 @@ Here is a quick picture about the signaling architecture :
![GlobalArchitecture]
-Key here are on both layer, **low** and **high**.
+Key here are on both layers, **low** and **high**.
-- **Low level** are in charge of handle a data exchange protocol to
+- **Low levels** are in charge of handling data exchange protocol to
decode/encode and retransmit with an AGL compatible format, most convenient
- way using **Application Framework** event. These are divided in two parts,
+ way using **Application Framework** events. These are divided into two parts,
which are :
- - Transport Layer plug-in that are able to read/write a protocol.
- - Decoding/Encoding part that expose signals and a way to access them.
+ - Transport Layer plug-in that is able to read/write a protocol.
+ - Decoding/Encoding part that exposes signals and a way to access them.
- **High level signal composer** gathers multiple **low level** signaling
sources and creates new virtuals signals from the **raw** signals defined (eg.
- signal made from gps latitude and longitude that calcul the heading of
+ signal made from gps latitude and longitude that computes the heading of
vehicle). It is modular and each signal source should be handled by specific
plugins which take care of get the underlying event from **low level** or
define signaling composition with simple or complex operation to output value
from **raw** signals
-A transport plug-in is a shared library that shared a common API to be compatible with **low level** services that is:
+A transport plug-in is a shared library that shares a common API to be compatible with **low level** services that is:
- **open/close**: method to open a handle which could be a socket, file or
device by example.