From 3fcb117b7337801155991b944c87a428934aee0b Mon Sep 17 00:00:00 2001 From: Sander Speetjens Date: Tue, 28 Nov 2023 13:31:47 +0100 Subject: [PATCH] modbus_tcp Fix typo --- project/Core/Src/modbus_tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Core/Src/modbus_tcp.c b/project/Core/Src/modbus_tcp.c index c593a79..8b49558 100644 --- a/project/Core/Src/modbus_tcp.c +++ b/project/Core/Src/modbus_tcp.c @@ -42,7 +42,7 @@ static err_t modbus_accept(void* arg, struct tcp_pcb* pcb, err_t err); /** * @fn static err_t modbus_incoming_data(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) * @brief Function that's called when there is a new request on port 502. - * It handles the incoming data from Qmodmaster + * It handles the incoming data from QModMaster */ static err_t modbus_incoming_data(void* arg, struct tcp_pcb* pcb, struct pbuf* p, err_t err) { uint8_t counter;