diff --git a/docs/TinyHdlc_8h.html b/docs/TinyHdlc_8h.html index 59de9276..ef45af52 100644 --- a/docs/TinyHdlc_8h.html +++ b/docs/TinyHdlc_8h.html @@ -22,7 +22,7 @@
- Tiny protocol
- 0.7.0
-
- Tiny communication protocol for microcontrollers
- |
-
This is the complete list of members for Tiny::Proto, including all inherited members.
-begin(write_block_cb_t writecb, read_block_cb_t readcb) | Tiny::Proto | |
beginToSerial() | Tiny::Proto | inline |
beginToSerial1() | Tiny::Proto | inline |
beginToSerial2() | Tiny::Proto | inline |
beginToSerial3() | Tiny::Proto | inline |
disableCrc() | Tiny::Proto | |
disableUid() | Tiny::Proto | inline |
enableCheckSum() | Tiny::Proto | |
enableCrc16() | Tiny::Proto | |
enableCrc32() | Tiny::Proto | |
enableUid() | Tiny::Proto | inline |
end() | Tiny::Proto | |
Proto() (defined in Tiny::Proto) | Tiny::Proto | inline |
read(char *buf, int size, uint8_t flags=TINY_FLAG_WAIT_FOREVER) | Tiny::Proto | |
read(Packet &pkt, uint8_t flags=TINY_FLAG_WAIT_FOREVER) | Tiny::Proto | |
write(char *buf, int size, uint8_t flags=TINY_FLAG_WAIT_FOREVER) | Tiny::Proto | |
write(Packet &pkt, uint8_t flags=TINY_FLAG_WAIT_FOREVER) | Tiny::Proto |
- Tiny protocol
- 0.7.0
-
- Tiny communication protocol for microcontrollers
- |
-
#include <TinyProtocol.h>
-Public Member Functions | |
void | begin (write_block_cb_t writecb, read_block_cb_t readcb) |
void | beginToSerial () |
void | beginToSerial1 () |
void | beginToSerial2 () |
void | beginToSerial3 () |
void | end () |
int | write (char *buf, int size, uint8_t flags=TINY_FLAG_WAIT_FOREVER) |
int | read (char *buf, int size, uint8_t flags=TINY_FLAG_WAIT_FOREVER) |
int | write (Packet &pkt, uint8_t flags=TINY_FLAG_WAIT_FOREVER) |
int | read (Packet &pkt, uint8_t flags=TINY_FLAG_WAIT_FOREVER) |
void | disableCrc () |
bool | enableCheckSum () |
bool | enableCrc16 () |
bool | enableCrc32 () |
void | enableUid () |
void | disableUid () |
Proto class incapsulates Protocol functionality. Remember that you may use always C-style API functions instead C++. Please refer to documentation.
-void Tiny::Proto::begin | -( | -write_block_cb_t | -writecb, | -
- | - | read_block_cb_t | -readcb | -
- | ) | -- |
Initializes protocol internal variables. If you need to switch communication with other destination point, you can call this method one again after calling end().
writecb | - write function to some physical channel |
readcb | - read function from some physical channel |
-
|
- -inline | -
Initializes protocol internal variables and redirects communication through Arduino Serial connection (Serial).
-
|
- -inline | -
Initializes protocol internal variables and redirects communication through Arduino Serial1 connection (Serial1).
-
|
- -inline | -
Initializes protocol internal variables and redirects communication through Arduino Serial2 connection (Serial2).
-
|
- -inline | -
Initializes protocol internal variables and redirects communication through Arduino Serial3 connection (Serial3).
void Tiny::Proto::disableCrc | -( | -) | -- |
Disable CRC field in the protocol. If CRC field is OFF, then the frame looks like this: 0x7E databytes 0x7E.
- -
-
|
- -inline | -
Disables Uid field in the protocol. If enabled this 16-bit field with packet identifier is added before each payload data. Frame with uid: 0x7E 16-bituid payload 0x7E Frame without uid: 0x7E payload 0x7E
- -bool Tiny::Proto::enableCheckSum | -( | -) | -- |
Enables CRC 8-bit field in the protocol. This field contains sum of all data bytes in the packet. 8-bit field is supported by Nano version of Tiny library.
bool Tiny::Proto::enableCrc16 | -( | -) | -- |
Enables CRC 16-bit field in the protocol. This field contains FCS 16-bit CCITT like defined in RFC 1662. 16-bit field is not supported by Nano version of Tiny library.
bool Tiny::Proto::enableCrc32 | -( | -) | -- |
Enables CRC 32-bit field in the protocol. This field contains FCS 32-bit CCITT like defined in RFC 1662. 32-bit field is not supported by Nano version of Tiny library.
-
|
- -inline | -
Enables Uid field in the protocol. If enabled this 16-bit field with packet identifier is added before each payload data. Frame with uid: 0x7E 16-bituid payload 0x7E Frame without uid: 0x7E payload 0x7E
- -void Tiny::Proto::end | -( | -) | -- |
Resets protocol state.
- -int Tiny::Proto::read | -( | -char * | -buf, | -
- | - | int | -size, | -
- | - | uint8_t | -flags = TINY_FLAG_WAIT_FOREVER |
-
- | ) | -- |
Reads data block from communication channel.
buf | - buffer to place data read from communication channel |
size | - maximum size of the buffer in bytes. |
flags | - Flags for Tiny API functions |
int Tiny::Proto::read | -( | -Packet & | -pkt, | -
- | - | uint8_t | -flags = TINY_FLAG_WAIT_FOREVER |
-
- | ) | -- |
Reads packet from communication channel.
pkt | Packet object to put data to |
flags | Flags for Tiny API functions |
int Tiny::Proto::write | -( | -char * | -buf, | -
- | - | int | -size, | -
- | - | uint8_t | -flags = TINY_FLAG_WAIT_FOREVER |
-
- | ) | -- |
Sends data block over communication channel.
buf | - data to send |
size | - length of the data in bytes |
flags | - flags. Flags for Tiny API functions |
int Tiny::Proto::write | -( | -Packet & | -pkt, | -
- | - | uint8_t | -flags = TINY_FLAG_WAIT_FOREVER |
-
- | ) | -- |
Sends packet over communication channel.
pkt | - Packet to send |
flags | - Flags for Tiny API functions |
- Tiny protocol
- 0.6.4
-
- Tiny communication protocol for microcontrollers
- |
-
File in src | Includes file in src/proto |
---|---|
TinyLightProtocol.h | tiny_light.h |
TinyProtocol.h | tiny_layer2.h |
TinyProtocolHd.h | tiny_hd.h |
- Tiny protocol
- 0.7.0
-
- Tiny communication protocol for microcontrollers
- |
-
File in src/proto/half_duplex | Includes file in src/proto/hal |
---|---|
tiny_hd.h | tiny_proto_types.h |
- Tiny protocol
- 0.6.4
-
- Tiny communication protocol for microcontrollers
- |
-
- Tiny protocol
- 0.6.4
-
- Tiny communication protocol for microcontrollers
- |
-
- Tiny protocol
- 0.6.4
-
- Tiny communication protocol for microcontrollers
- |
-
- Tiny protocol
- 0.6.4
-
- Tiny communication protocol for microcontrollers
- |
-
diff --git a/docs/structtiny__events__t-members.html b/docs/structtiny__events__t-members.html
index 288f1fda..b1dac5ad 100644
--- a/docs/structtiny__events__t-members.html
+++ b/docs/structtiny__events__t-members.html
@@ -22,7 +22,7 @@
|
diff --git a/docs/structtiny__events__t.html b/docs/structtiny__events__t.html
index 93f9530c..b33742f4 100644
--- a/docs/structtiny__events__t.html
+++ b/docs/structtiny__events__t.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
diff --git a/docs/structtiny__request__-members.html b/docs/structtiny__request__-members.html
index 896b713c..d98f72c0 100644
--- a/docs/structtiny__request__-members.html
+++ b/docs/structtiny__request__-members.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
diff --git a/docs/structtiny__request__.html b/docs/structtiny__request__.html
index b03c8ff9..9bb29ba9 100644
--- a/docs/structtiny__request__.html
+++ b/docs/structtiny__request__.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
diff --git a/docs/tiny__config_8h_source.html b/docs/tiny__config_8h_source.html
deleted file mode 100644
index 2573a327..00000000
--- a/docs/tiny__config_8h_source.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-tiny_config.h
-
-
--Generated by - - 1.8.13 - - - diff --git a/docs/tiny__defines_8h_source.html b/docs/tiny__defines_8h_source.html deleted file mode 100644 index e7bc2b9f..00000000 --- a/docs/tiny__defines_8h_source.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-tiny_defines.h
-
-
--Generated by - - 1.8.13 - - - diff --git a/docs/tiny__hd_8h.html b/docs/tiny__hd_8h.html index 96d71304..232eea1b 100644 --- a/docs/tiny__hd_8h.html +++ b/docs/tiny__hd_8h.html @@ -22,7 +22,7 @@
|
diff --git a/docs/tiny__hd_8h_source.html b/docs/tiny__hd_8h_source.html
index 61b1178e..64ee2f22 100644
--- a/docs/tiny__hd_8h_source.html
+++ b/docs/tiny__hd_8h_source.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
@@ -69,19 +69,19 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
Go to the documentation of this file.
- int tiny_hd_init(STinyHdData *handle, STinyHdInit *init) Initialized communication for Tiny Half Duplex protocol. Definition: tiny_hd.c:159 int tiny_hd_init(STinyHdData *handle, STinyHdInit *init) Initialized communication for Tiny Half Duplex protocol. Definition: tiny_hd.c:179 uint8_t multithread_mode Multithread mode. Should be zero. Definition: tiny_hd.h:66 on_frame_cb_t on_sent_cb Callback to get notification of sent frames. Definition: tiny_hd.h:56 read_block_cb_t read_func callback function to read bytes from the physical channel Definition: tiny_hd.h:80 uint16_t timeout timeout. Can be set to 0 during initialization. In this case timeout will be set to default ... Definition: tiny_hd.h:96 on_frame_cb_t on_sent_cb Callback to get notification of sent frames. Definition: tiny_hd.h:86 void tiny_hd_close(STinyHdData *handle) stops Tiny Half Duplex state machine Definition: tiny_hd.c:190 void tiny_hd_close(STinyHdData *handle) stops Tiny Half Duplex state machine Definition: tiny_hd.c:211 Definition: tiny_layer2.h:110 on_frame_cb_t on_frame_cb Callback to process received frames. Definition: tiny_hd.h:54 read_block_cb_t read_func callback function to read bytes from the physical channel Definition: tiny_hd.h:52 int tiny_send_wait_ack(STinyHdData *handle, void *buf, uint16_t len) Sends userdata and waits for acknowledgement from remote side. Definition: tiny_hd.c:70 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:134 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_types.h:147 int tiny_send_wait_ack(STinyHdData *handle, void *buf, uint16_t len) Sends userdata and waits for acknowledgement from remote side. Definition: tiny_hd.c:80 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:136 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_types.h:149 on_frame_cb_t on_frame_cb callback function to process incoming frames Definition: tiny_hd.h:84 write_block_cb_t write_func callback function to write bytes to the physical channel Definition: tiny_hd.h:78 uint8_t multithread_mode multithread mode. At present should be 0 Definition: tiny_hd.h:98 Definition: tiny_hdlc.h:42 uint16_t timeout Timeout for operations with acknowledge. Definition: tiny_hd.h:58 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:123 int tiny_hd_run(STinyHdData *handle) runs receive functions of Tiny Half Duplex protocol. Definition: tiny_hd.c:204 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:125 int tiny_hd_run(STinyHdData *handle) runs receive functions of Tiny Half Duplex protocol. Definition: tiny_hd.c:225 write_block_cb_t write_func callback function to write bytes to the physical channel Definition: tiny_hd.h:50
|
@@ -68,33 +68,33 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
tiny_hdlc.h
-
+
169 int hdlc_run_rx_until_read( hdlc_handle_t handle, read_block_cb_t readcb, void *user_data, uint16_t timeout );
If default is specified HDLC will auto select CRC option. Definition: tiny_hdlc.h:30 int(* on_frame_read)(void *user_data, void *data, int len) Definition: tiny_hdlc.h:67 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:134 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:136 struct _hdlc_handle_t hdlc_struct_t Tiny protocol Types. int hdlc_send(hdlc_handle_t handle, const void *data, int len, uint32_t timeout) Definition: tiny_hdlc.c:261 int hdlc_send(hdlc_handle_t handle, const void *data, int len, uint32_t timeout) Definition: tiny_hdlc.c:272 int(* on_frame_sent)(void *user_data, const void *data, int len) Definition: tiny_hdlc.h:79 Definition: tiny_hdlc.h:42 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:123 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:125 void hdlc_set_rx_buffer(hdlc_handle_t handle, void *data, int size) Definition: tiny_hdlc.c:419 int hdlc_run_rx(hdlc_handle_t handle, const void *data, int len, int *error) Definition: tiny_hdlc.c:396 Definition: tiny_defines.h:29 void hdlc_set_rx_buffer(hdlc_handle_t handle, void *data, int size) Definition: tiny_hdlc.c:439 int hdlc_run_rx(hdlc_handle_t handle, const void *data, int len, int *error) Definition: tiny_hdlc.c:416 Definition: tiny_defines.h:30 diff --git a/docs/tiny__layer2_8h.html b/docs/tiny__layer2_8h.html index ce61d320..7803e2a6 100644 --- a/docs/tiny__layer2_8h.html +++ b/docs/tiny__layer2_8h.html @@ -22,7 +22,7 @@
|
diff --git a/docs/tiny__layer2_8h__dep__incl.map b/docs/tiny__layer2_8h__dep__incl.map
deleted file mode 100644
index 81093799..00000000
--- a/docs/tiny__layer2_8h__dep__incl.map
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/docs/tiny__layer2_8h__dep__incl.md5 b/docs/tiny__layer2_8h__dep__incl.md5
deleted file mode 100644
index 23c5d4f9..00000000
--- a/docs/tiny__layer2_8h__dep__incl.md5
+++ /dev/null
@@ -1 +0,0 @@
-a75dce2e1ec87e6ab7fbd6ef754bec8c
\ No newline at end of file
diff --git a/docs/tiny__layer2_8h__dep__incl.png b/docs/tiny__layer2_8h__dep__incl.png
deleted file mode 100644
index 8ccccdd3..00000000
Binary files a/docs/tiny__layer2_8h__dep__incl.png and /dev/null differ
diff --git a/docs/tiny__layer2_8h_source.html b/docs/tiny__layer2_8h_source.html
index 5c382ba1..cce00598 100644
--- a/docs/tiny__layer2_8h_source.html
+++ b/docs/tiny__layer2_8h_source.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
@@ -75,7 +75,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
fcs_t fcs The field contains calculated checksum and not available in TINY_MINIMAL configuration. Definition: tiny_layer2.h:91 Definition: tiny_layer2.h:59 uint8_t inprogress The state of Receive State machine. Definition: tiny_layer2.h:65 Definition: tiny_types.h:98 Definition: tiny_types.h:100 void tiny_unlock(STinyData *handle) unlock Tiny state machine for send operations Definition: tiny_layer2.c:1092 int tiny_send_buffer(STinyData *handle, uint8_t *pbuf, int len, uint8_t flags) sends user provided data in the body of the frame Definition: tiny_layer2.c:422 uint8_t fcs_bits The field contains number of bits to use for FCS and not available in TINY_MINIMAL configuration... Definition: tiny_layer2.h:128 int tiny_simple_read(STinyData *handle, uint8_t *pbuf, int len) reads frame from the channel in blocking mode. Definition: tiny_layer2.c:987 void tiny_enable_uid(STinyData *handle, uint8_t on) The function enables uid support. Enables uid support. The function affects on tiny_on_rx_byte and on... Definition: tiny_layer2.c:224 int tiny_init(STinyData *handle, write_block_cb_t write_func, read_block_cb_t read_func, void *pdata) Definition: tiny_layer2.c:145 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:134 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:136 int tiny_send(STinyData *handle, uint16_t *uid, uint8_t *pbuf, int len, uint8_t flags) sends frame with user payload to communication channel Definition: tiny_layer2.c:554 int sentbytes Number of payload bytes, sent from the frame being sent. Definition: tiny_layer2.h:83 int framelen Number of bytes in the frame being received. Definition: tiny_layer2.h:63 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_types.h:147 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_types.h:149 void * pdata pointer to application defined data, passed during protocol initialization - absent in Arduino versio... Definition: tiny_layer2.h:113 uint8_t uid_support flag indicates if uid support is enabled. It is important for tiny_on_rx_byte() Definition: tiny_layer2.h:139 void tiny_read_terminate(STinyData *handle) terminates read operation Definition: tiny_layer2.c:907 int tiny_simple_send(STinyData *handle, uint8_t *pbuf, int len) sends frame with user payload to communication channel in blocking mode Definition: tiny_layer2.c:608 int tiny_get_callbacks(STinyData *handle, on_frame_cb_t *read_cb, on_frame_cb_t *send_cb) returns callbacks assigned for frame processing The function returns set callbacks. Definition: tiny_layer2.c:1051 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:123 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:125 int framelen Length of the frame passed by a user. Definition: tiny_layer2.h:87 on_frame_cb_t write_cb pointer to callback function to get data being sent Definition: tiny_layer2.h:137
|
diff --git a/docs/tiny__light_8h_source.html b/docs/tiny__light_8h_source.html
index 61427194..ac616830 100644
--- a/docs/tiny__light_8h_source.html
+++ b/docs/tiny__light_8h_source.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
@@ -71,15 +71,15 @@
Go to the documentation of this file.Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
hdlc_handle_t tiny_light_get_hdlc(void *handle) returns lower level hdlc handle. Definition: tiny_light.c:185 int tiny_light_send(void *handle, const uint8_t *pbuf, int len) sends frame with user payload to communication channel in blocking mode Definition: tiny_light.c:136 Definition: tiny_types.h:98 Definition: tiny_types.h:100 int tiny_light_read(void *handle, uint8_t *pbuf, int len) reads frame from the channel in blocking mode. Definition: tiny_light.c:158 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:134 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:136 read_block_cb_t read_func pointer to platform related read function Definition: tiny_light.h:60 Definition: tiny_light.h:51 Tiny protocol Types. Definition: tiny_hdlc.h:42 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:123 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:125 int tiny_light_init(void *handle, write_block_cb_t write_func, read_block_cb_t read_func, void *pdata) Definition: tiny_light.c:72
|
diff --git a/docs/tiny__proto__types_8h.html b/docs/tiny__proto__types_8h.html
deleted file mode 100644
index 1f517965..00000000
--- a/docs/tiny__proto__types_8h.html
+++ /dev/null
@@ -1,260 +0,0 @@
-
-
-
-
-
-
-
-Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Tiny protocol Types. -More... -#include <stdint.h> - #include "tiny_defines.h" -
-Include dependency graph for tiny_proto_types.h:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-Go to the source code of this file. -
Detailed Description-Tiny protocol Types. -This is Tiny protocol implementation for microcontrollers -Typedef Documentation- -◆ on_frame_cb_t- -
-
-
-
-
-
-on_frame_cb_t is a callback function, which is called every time new frame is received, or sent. refer to tiny_set_callbacks
◆ read_block_cb_t- -
-
-
-
-
-
-The function reads data from communication channel.
◆ write_block_cb_t- -
-
-
-
-
-The function writes data to communication channel port.
-Generated by - - 1.8.13 - - - diff --git a/docs/tiny__proto__types_8h__dep__incl.map b/docs/tiny__proto__types_8h__dep__incl.map deleted file mode 100644 index fd4710be..00000000 --- a/docs/tiny__proto__types_8h__dep__incl.map +++ /dev/null @@ -1,8 +0,0 @@ - diff --git a/docs/tiny__proto__types_8h__dep__incl.md5 b/docs/tiny__proto__types_8h__dep__incl.md5 deleted file mode 100644 index 59918aba..00000000 --- a/docs/tiny__proto__types_8h__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -c92f7f9225e05167e21112eb8ba9a32b \ No newline at end of file diff --git a/docs/tiny__proto__types_8h__dep__incl.png b/docs/tiny__proto__types_8h__dep__incl.png deleted file mode 100644 index 7411e030..00000000 Binary files a/docs/tiny__proto__types_8h__dep__incl.png and /dev/null differ diff --git a/docs/tiny__proto__types_8h__incl.map b/docs/tiny__proto__types_8h__incl.map deleted file mode 100644 index 366667f3..00000000 --- a/docs/tiny__proto__types_8h__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/docs/tiny__proto__types_8h__incl.md5 b/docs/tiny__proto__types_8h__incl.md5 deleted file mode 100644 index 2652a30f..00000000 --- a/docs/tiny__proto__types_8h__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -336f4c52f6d28704d80992f421814130 \ No newline at end of file diff --git a/docs/tiny__proto__types_8h__incl.png b/docs/tiny__proto__types_8h__incl.png deleted file mode 100644 index bc1a0890..00000000 Binary files a/docs/tiny__proto__types_8h__incl.png and /dev/null differ diff --git a/docs/tiny__proto__types_8h_source.html b/docs/tiny__proto__types_8h_source.html deleted file mode 100644 index b3c5cb5a..00000000 --- a/docs/tiny__proto__types_8h_source.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-tiny_proto_types.h
-Go to the documentation of this file.
-
-int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_proto_types.h:114 uint32_t framesBroken Number of broken frames received. Definition: tiny_proto_types.h:102 uint32_t bytesReceived Number of payload bytes totally received through the channel. Definition: tiny_proto_types.h:96 uint32_t framesSent Number of frames, successfully sent through the channel. Definition: tiny_proto_types.h:98 Definition: tiny_proto_types.h:89 uint32_t framesReceived Number of frames, successfully received through the communication channel. Definition: tiny_proto_types.h:100 uint32_t oosyncBytes Number of bytes received out of frame bytes. Definition: tiny_proto_types.h:92 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_proto_types.h:125 uint32_t bytesSent Number of payload bytes totally sent through the channel. Definition: tiny_proto_types.h:94 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_proto_types.h:138 -Generated by - - 1.8.13 - - - diff --git a/docs/tiny__rq__pool_8h_source.html b/docs/tiny__rq__pool_8h_source.html index 19630201..383f4514 100644 --- a/docs/tiny__rq__pool_8h_source.html +++ b/docs/tiny__rq__pool_8h_source.html @@ -22,7 +22,7 @@
|
diff --git a/docs/tiny__types_8h.html b/docs/tiny__types_8h.html
index 668c4ef3..cf9133ab 100644
--- a/docs/tiny__types_8h.html
+++ b/docs/tiny__types_8h.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
diff --git a/docs/tiny__types_8h_source.html b/docs/tiny__types_8h_source.html
index cc7f14fc..e5e6a709 100644
--- a/docs/tiny__types_8h_source.html
+++ b/docs/tiny__types_8h_source.html
@@ -22,7 +22,7 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
|
@@ -68,17 +68,17 @@
Tiny protocol
- 0.7.2
+ 0.8.0
Tiny communication protocol for microcontrollers
tiny_types.h
-Go to the documentation of this file. uint32_t framesBroken Number of broken frames received. Definition: tiny_types.h:111 uint32_t bytesReceived Number of payload bytes totally received through the channel. Definition: tiny_types.h:105 uint32_t framesSent Number of frames, successfully sent through the channel. Definition: tiny_types.h:107 Definition: tiny_types.h:98 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:134 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_types.h:147 uint32_t framesReceived Number of frames, successfully received through the communication channel. Definition: tiny_types.h:109 uint32_t oosyncBytes Number of bytes received out of frame bytes. Definition: tiny_types.h:101 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:123 Definition: tiny_defines.h:29 uint32_t bytesSent Number of payload bytes totally sent through the channel. Definition: tiny_types.h:103 uint32_t framesBroken Number of broken frames received. Definition: tiny_types.h:113 uint32_t bytesReceived Number of payload bytes totally received through the channel. Definition: tiny_types.h:107 uint32_t framesSent Number of frames, successfully sent through the channel. Definition: tiny_types.h:109 Definition: tiny_types.h:100 int(* read_block_cb_t)(void *pdata, void *buffer, int size) Definition: tiny_types.h:136 void(* on_frame_cb_t)(void *handle, uint16_t uid, uint8_t *pdata, int size) Definition: tiny_types.h:149 uint32_t framesReceived Number of frames, successfully received through the communication channel. Definition: tiny_types.h:111 uint32_t oosyncBytes Number of bytes received out of frame bytes. Definition: tiny_types.h:103 int(* write_block_cb_t)(void *pdata, const void *buffer, int size) Definition: tiny_types.h:125 Definition: tiny_defines.h:30 uint32_t bytesSent Number of payload bytes totally sent through the channel. Definition: tiny_types.h:105 diff --git a/doxygen.cfg b/doxygen.cfg index 1bb789e5..537d245e 100644 --- a/doxygen.cfg +++ b/doxygen.cfg @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "Tiny protocol" -PROJECT_NUMBER = 0.7.2 +PROJECT_NUMBER = 0.8.0 PROJECT_BRIEF = "Tiny communication protocol for microcontrollers" PROJECT_LOGO = OUTPUT_DIRECTORY = ./docs diff --git a/library.properties b/library.properties index 74af7cb8..21bf54fd 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=tinyproto -version=0.7.2 +version=0.8.0 author=Alexey Dynda maintainer=Alexey Dynda |