aboutsummaryrefslogtreecommitdiff
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/protocol.h4
-rw-r--r--shared/protocol.md26
2 files changed, 16 insertions, 14 deletions
diff --git a/shared/protocol.h b/shared/protocol.h
index 5bcb114..96c039a 100644
--- a/shared/protocol.h
+++ b/shared/protocol.h
@@ -5,7 +5,7 @@
#include "bin.h"
-#define WS_PROTOCOL_CMD_MAX_ARGUMENTS (2)
+#define WS_PROTOCOL_CMD_MAX_ARGUMENTS (3)
#define WS_PROTOCOL_CMD_BUFFER_LEN (40)
#define WS_PROTOCOL_CMD_AMOUNT (1)
@@ -148,4 +148,4 @@ static ws_protocol_res_handler_t* g_ws_protocol_res_handlers[WS_PROTOCOL_CMD_AMO
[WS_PROTOCOL_CMD_LAST_RECORDS] = &ws_protocol_res_last_records,
};
-unsigned short ws_protocol_get_header_size(ws_s_protocol_res* response); \ No newline at end of file
+unsigned short ws_protocol_get_header_size(ws_s_protocol_res* response);
diff --git a/shared/protocol.md b/shared/protocol.md
index b6e955c..1e52e42 100644
--- a/shared/protocol.md
+++ b/shared/protocol.md
@@ -9,10 +9,10 @@ requirements about the connection itself.
The protocol is only used in a request-response fashion, so all commands are
assumed to be sent by the qt client, and responded to by the weather station.
-Functions for generating commands and parsing incoming data are provided by the
-protocol.c and protocol.h files. See [code
-implementation](#code-implementation) section for more details about naming
-conventions.
+~Functions for generating commands and parsing incoming data are provided by
+the protocol.c and protocol.h files in this folder.~ A server using these files
+should implement every protocol handler function in a seperate c file, along
+with a data sending function that is also used internally.
- LF for newline instead of CRLF
- Commands are single-line
@@ -24,22 +24,28 @@ conventions.
## Commands
-### `last-records <n>`
+### `last-records <n> <o>`
-Returns the last `n` records in csv format. The first line has the csv table
-header, with the fields `id`, `temperature`, `humidity`, and
+Returns the last `n` records with offset `<o>` in csv format. The first line
+has the csv table header, with the fields `id`, `temperature`, `humidity`, and
`atmospheric_pressure`. The rest of the response consists of 1 record per line.
The amount of records is limited to the amount of valid records in the backlog
buffer. When the amount of returned records is 0, the response consists of the
csv header, but without any following records.
+Offset `<o>` is a positive integer, representing the starting point for the
+most recent record that is returned, this will get subtracted from the id of
+the most recent record. E.g. if the last record has id `00f0`, and a request is
+sent with parameters `n=3` and `o=5`, the records with id's `00eb`, `00ea`, and
+`00e9` will be returned.
+
## Example transaction
In the following example, newlines are indicated by `<0a>`, request by lines
starting with `<`, and response by lines starting with `>`.
```
-< last-records 5<0a>
+< last-records 5 0<0a>
> ok,73<0a>
> id,temperature,humidity,atmospheric_pressure<0a>
> 10dc,2f,c5,7f<0a>
@@ -49,7 +55,3 @@ starting with `<`, and response by lines starting with `>`.
> 10e0,34,c9,7e<0a>
```
-## Code implementation
-
-
-