18static constexpr int GATT_ERR_NOT_CONNECTED = -1;
19static constexpr int GATT_ERR_NO_MEMORY = -2;
22static constexpr int GATT_ERR_UNLIKELY = 0x0E;
26static constexpr uint32_t GATT_DISCONNECT_TIMEOUT_MS = 10000;
29static constexpr uint16_t DEFAULT_ATT_MTU = 23;
37static constexpr uint16_t MEDIUM_MIN_CONN_INTERVAL = 0x07;
38static constexpr uint16_t MEDIUM_MAX_CONN_INTERVAL = 0x09;
42static constexpr uint16_t MEDIUM_CONN_TIMEOUT = 800;
45static constexpr uint16_t FAST_MIN_CONN_INTERVAL = 0x06;
46static constexpr uint16_t FAST_MAX_CONN_INTERVAL = 0x06;
47static constexpr uint16_t FAST_CONN_TIMEOUT = 1000;
const char * client_state_to_string(ClientState state)