aboutsummaryrefslogtreecommitdiff
path: root/include/tcp_server.h
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2021-11-30 23:50:53 -0700
committerJosh Rahm <joshuarahm@gmail.com>2021-11-30 23:50:53 -0700
commitd89195e2144df51ca02a860f4b46fd38b4dfeb29 (patch)
treebf94208b2538c8039729f7b30a7dd5504ebf7fb2 /include/tcp_server.h
parent6df4a4ed74621ce5df26791b84b9157902aeaa83 (diff)
downloadesp32-ws2812b-d89195e2144df51ca02a860f4b46fd38b4dfeb29.tar.gz
esp32-ws2812b-d89195e2144df51ca02a860f4b46fd38b4dfeb29.tar.bz2
esp32-ws2812b-d89195e2144df51ca02a860f4b46fd38b4dfeb29.zip
Reorganize tasks into their own files.
Diffstat (limited to 'include/tcp_server.h')
-rw-r--r--include/tcp_server.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/tcp_server.h b/include/tcp_server.h
new file mode 100644
index 0000000..8eeea22
--- /dev/null
+++ b/include/tcp_server.h
@@ -0,0 +1,11 @@
+#pragma once
+#ifndef TCP_SERVER_H_
+#define TCP_SERVER_H_
+
+#include "ws2812b_writer.h"
+#include "freertos/FreeRTOS.h"
+#include "freertos/task.h"
+
+portTASK_FUNCTION_PROTO(tcp_server, params);
+
+#endif /* TCP_SERVER_H_ */