22 lines
1.6 KiB
C
22 lines
1.6 KiB
C
#pragma once
|
|
|
|
// ─── WiFi ────────────────────────────────────────────────────────────────────
|
|
#define WIFI_SSID "sandbox"
|
|
#define WIFI_PASSWORD "Jaunsgads11!!"
|
|
|
|
// ─── Coordinator ─────────────────────────────────────────────────────────────
|
|
// This PC (192.168.1.101) runs coordinator.py during the test phase.
|
|
// Will change to Orange Pi (192.168.1.133) when we migrate.
|
|
#define COORDINATOR_IP "192.168.1.133"
|
|
#define COORDINATOR_PORT 5005
|
|
|
|
// ─── Scan ────────────────────────────────────────────────────────────────────
|
|
#define SCAN_INTERVAL_MS 15000 // how often to scan (ms)
|
|
#define HEARTBEAT_INTERVAL_MS 10000 // how often to send a heartbeat (ms)
|
|
|
|
// ─── Probe sniffing ──────────────────────────────────────────────────────────
|
|
#define PROBE_SNIFF 1 // 1 = enabled, 0 = disabled
|
|
#define PROBE_DEDUP_SECS 30 // suppress same MAC+SSID within this window (seconds)
|
|
#define PROBE_QUEUE_SIZE 32 // max probe events buffered between scan cycles
|
|
#define DEAUTH_QUEUE_SIZE 32 // max deauth/disassoc events buffered between scan cycles
|