main/task_http.c

changeset 1
ad2c8b13eb88
parent 0
b74b0e4902c3
child 21
9e4cce24f6ff
--- a/main/task_http.c	Sat Oct 20 13:23:15 2018 +0200
+++ b/main/task_http.c	Sat Oct 20 17:09:48 2018 +0200
@@ -8,7 +8,7 @@
 #include "mbedtls/sha1.h"
 
 
-const char			*TAG = "task_http";
+static const char		*TAG = "task_http";
 static QueueHandle_t		client_queue;
 const static int		client_queue_size = 10;
 static TaskHandle_t             xTaskHTTP  = NULL;
@@ -16,9 +16,15 @@
 
 
 
+/**
+ * @brief Debug dump buffer
+ * @param buf The buffer
+ * @param buflen Length of the buffer
+ */
 void dump_buf(char *buf, uint16_t buflen);
 
 
+
 /**
  * @brief Send HTTP error and message
  * @param conn The socket to send to.

mercurial