mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
16 lines
481 B
C
16 lines
481 B
C
#pragma once
|
|
|
|
#include <sdkconfig.h>
|
|
|
|
#ifndef CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER
|
|
|
|
#ifdef CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
|
|
// Enable or disable whether this device advertises as a commissioner.
|
|
#define CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY 1
|
|
#endif // CONFIG_ESP_MATTER_COMMISSIONER_ENABLE
|
|
|
|
// Number of devices a controller can be simultaneously connected to
|
|
#define CHIP_CONFIG_CONTROLLER_MAX_ACTIVE_DEVICES 8
|
|
|
|
#endif // CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER
|