diff options
author | Elwin Hammer <elwinhammer@gmail.com> | 2024-05-29 21:41:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 21:41:24 +0200 |
commit | 1f78927e2e399a504368fb9b407de12d06dddcb5 (patch) | |
tree | f80ba30274ca75704075610a39fc28930f7ac4fa /main/config.def.h | |
parent | d7616546dd5e8ba35c2b1b1ece736bca60e0b990 (diff) | |
parent | 8894d20ff0d1c1dde69879a21e756e01bcfa5262 (diff) |
Merge pull request #11 from lonkaars/masterprot/software-puzzle
Bring software-puzzle up-to-date
Diffstat (limited to 'main/config.def.h')
-rw-r--r-- | main/config.def.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/main/config.def.h b/main/config.def.h index 48de559..7fcaed9 100644 --- a/main/config.def.h +++ b/main/config.def.h @@ -1,8 +1,17 @@ #pragma once +#include <pico/cyw43_arch.h> +// wifi credentials #define CONF_NET_SSID "network name" #define CONF_NET_PASS "network password" +#define CONF_NET_AUTH CYW43_AUTH_WPA2_AES_PSK +// max duration (milliseconds) for establishing wifi connection +#define CONF_NET_CONN_TIMEOUT 10e3 -#include "cyw43_country.h" +#include <cyw43_country.h> #define CONF_NET_COUNTRY CYW43_COUNTRY_NETHERLANDS +#define CONF_SRV_PORT 9191 + +#define LED_PIN CYW43_WL_GPIO_LED_PIN + |