]> git.scottworley.com Git - tattlekey/commitdiff
client: Move config to config.c
authorScott Worley <scottworley@scottworley.com>
Sun, 8 Oct 2023 01:18:39 +0000 (18:18 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 11 Oct 2023 01:47:58 +0000 (18:47 -0700)
client/CMakeLists.txt
client/config.c [new file with mode: 0644]
client/config.h [new file with mode: 0644]
client/tattlekey.c

index 99293f5ac24c8ebd91defe5e997283ffc6a23810..aeeae37e067f3d5ddd49e3e04cfd72229a90a4f9 100644 (file)
@@ -9,6 +9,7 @@ pico_sdk_init()
 
 add_executable(tattlekey
   blink.c
+  config.c
   tattlekey.c
   )
 
diff --git a/client/config.c b/client/config.c
new file mode 100644 (file)
index 0000000..538f432
--- /dev/null
@@ -0,0 +1,4 @@
+#include "config.h"
+
+char wifi_ssid[] = "THEWIFISSID";
+char wifi_pass[] = "THEWIFIPASSWORD";
diff --git a/client/config.h b/client/config.h
new file mode 100644 (file)
index 0000000..5c8af1e
--- /dev/null
@@ -0,0 +1,7 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+extern char wifi_ssid[];
+extern char wifi_pass[];
+
+#endif
index 3c5915193e4c25be5a5c0af16637db61ffe89549..d7a82e57eb7267289049a918cfe346b341872b2c 100644 (file)
@@ -2,9 +2,7 @@
 #include "pico/stdlib.h"
 
 #include "blink.h"
-
-char ssid[] = "THEWIFISSID";
-char pass[] = "THEWIFIPASSWORD";
+#include "config.h"
 
 int main() {
   stdio_init_all();
@@ -13,8 +11,8 @@ int main() {
   signal(1, 200);
   cyw43_arch_enable_sta_mode();
   signal(2, 200);
-  if (cyw43_arch_wifi_connect_timeout_ms(ssid, pass, CYW43_AUTH_WPA2_AES_PSK,
-                                         10000))
+  if (cyw43_arch_wifi_connect_timeout_ms(wifi_ssid, wifi_pass,
+                                         CYW43_AUTH_WPA2_AES_PSK, 10000))
     signal_error_by_blinking();
   signal(3, 200);
   signal_success_by_blinking();