]> git.scottworley.com Git - tattlekey/blame_incremental - client/config.h
client: Explain config settings
[tattlekey] / client / config.h
... / ...
CommitLineData
1#ifndef CONFIG_H
2#define CONFIG_H
3
4#include "lwip/arch.h"
5
6/* Wi-Fi credentials */
7extern char wifi_ssid[];
8extern char wifi_pass[];
9
10/* Network address of the server to contact */
11extern char tattle_server_ip_address[];
12extern u16_t tattle_port;
13
14/* For distinguishing reports from multiple tattlekey devices. */
15extern u16_t this_tattler_identity;
16
17#endif