]>
Commit | Line | Data |
---|---|---|
e2173399 | 1 | #include "pico/cyw43_arch.h" |
5ec2b60a | 2 | #include "pico/stdlib.h" |
1427141a | 3 | #include "pico/util/queue.h" |
5ec2b60a | 4 | |
dae35db7 | 5 | #include "blink.h" |
d1521eda | 6 | #include "button.h" |
fbc57595 | 7 | #include "config.h" |
1e0a316e | 8 | #include "net.h" |
d234f6b3 | 9 | |
1427141a | 10 | queue_t queue; |
d1521eda | 11 | |
de14b62c SW |
12 | uint32_t time_s() { return time_us_64() / 1000000ul; } |
13 | ||
d1521eda | 14 | static void button_pressed() { |
1427141a | 15 | /* This runs in interrupt context; don't linger. */ |
2f7a1e89 | 16 | static uint64_t last_button_press_time = 0; |
de14b62c SW |
17 | uint32_t now = time_s(); |
18 | uint32_t time_since_last_press = now - last_button_press_time; | |
19 | if (time_since_last_press >= minimum_seconds_between_button_presses) { | |
2f7a1e89 SW |
20 | last_button_press_time = now; |
21 | char zero = '\0'; | |
22 | /* We don't check for failure (full queue) here because there's not much to | |
23 | * be done about it. */ | |
24 | queue_try_add(&queue, &zero); | |
25 | } | |
d1521eda SW |
26 | } |
27 | ||
75649fe3 SW |
28 | int main() { |
29 | stdio_init_all(); | |
d234f6b3 | 30 | if (cyw43_arch_init_with_country(CYW43_COUNTRY_USA)) |
75649fe3 | 31 | signal_error_by_blinking(); |
d234f6b3 | 32 | cyw43_arch_enable_sta_mode(); |
38d971ac | 33 | signal(3, 100); |
fbc57595 | 34 | if (cyw43_arch_wifi_connect_timeout_ms(wifi_ssid, wifi_pass, |
9efef936 | 35 | CYW43_AUTH_WPA2_AES_PSK, 90000)) |
d234f6b3 | 36 | signal_error_by_blinking(); |
38d971ac | 37 | signal(2, 300); |
1427141a SW |
38 | |
39 | queue_init(&queue, 1, 99); | |
40 | ||
d1521eda | 41 | begin_listening_for_button_press(button_pressed); |
1e0a316e | 42 | |
1427141a SW |
43 | u16_t seq = 0; |
44 | while (1) { | |
45 | char _; | |
46 | queue_remove_blocking(&queue, &_); | |
ff379463 SW |
47 | seq++; |
48 | for (int i = 0; i < resend_count; i++) { | |
49 | send_report(seq, i); | |
50 | signal(i == 0 ? 2 : 1, 100); | |
51 | sleep_ms(resend_interval_ms); | |
52 | } | |
1427141a | 53 | } |
75649fe3 | 54 | } |