mirror of
https://gitlab.com/wirelos/sprocket-lib.git
synced 2025-12-16 21:34:08 +01:00
18 lines
356 B
C
18 lines
356 B
C
#ifndef __MESHCONFIG__
|
|
#define __MESHCONFIG__
|
|
|
|
// FIXME non-mesh config should have it's own struct
|
|
struct MeshConfig {
|
|
int stationMode;
|
|
int channel;
|
|
int meshPort;
|
|
const char* meshSSID;
|
|
const char* meshPassword;
|
|
const char* stationSSID;
|
|
const char* stationPassword;
|
|
const char* hostname;
|
|
uint16_t debugTypes;
|
|
};
|
|
|
|
|
|
#endif |