Skip to content

Commit a966345

Browse files
committed
updated readme a little
1 parent ed389d5 commit a966345

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ DATA_CKSUM .. checksum, implemented as XOR of all preceding bytes in the message
5252
- Start by calling `TF_Init()` with `TF_MASTER` or `TF_SLAVE` as the argument
5353
- Implement `TF_WriteImpl()` - declared at the bottom of the header file as `extern`.
5454
This function is used by `TF_Send()` and others to write bytes to your UART (or other physical layer).
55-
Presently, always a full frame is sent to this function.
55+
A frame can be sent in it's entirety, or in multiple parts, depending on its size.
5656
- If you wish to use timeouts, periodically call `TF_Tick()`. The calling period determines
5757
the length of 1 tick. This is used to time-out the parser in case it gets stuck
5858
in a bad state (such as receiving a partial frame) and can also time-out ID listeners.
@@ -83,6 +83,6 @@ keep it, renew it's timeout, or let some other listener handle the message.
8383
You'll find various examples in the `demo/` folder. Each example has it's own Makefile,
8484
read it to see what options are available.
8585

86-
The demos are written for Linux, using sockets and `clone()` for background processing.
86+
The demos are written for Linux, some using sockets and `clone()` for background processing.
8787
They try to simulate real TinyFrame behavior in an embedded system with asynchronous
8888
Rx and Tx. If you can't run the demos, the source files are still good as examples.

0 commit comments

Comments
 (0)