From 1517811d1352c6b7278631a589fe866608d9fc3b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 20 Sep 2023 15:22:37 +0200 Subject: [PATCH] better docs --- satrs-core/src/hal/std/tcp_with_cobs_server.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/satrs-core/src/hal/std/tcp_with_cobs_server.rs b/satrs-core/src/hal/std/tcp_with_cobs_server.rs index 357b07d..fc44ebf 100644 --- a/satrs-core/src/hal/std/tcp_with_cobs_server.rs +++ b/satrs-core/src/hal/std/tcp_with_cobs_server.rs @@ -104,7 +104,8 @@ impl TcpTmSender for CobsTmSender { /// exchanged while also allowing packets with flexible size and a reliable way to reconstruct full /// packets even from a data stream which is split up. The server wil use the /// [parse_buffer_for_cobs_encoded_packets] function to parse for packets and pass them to a -/// generic TC receiver. +/// generic TC receiver. The user can use [crate::encoding::encode_packet_with_cobs] to encode +/// telecommands sent to the server. /// /// ## Example ///