Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase the number of read/write client/handler to 4 #7967

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/app/InteractionModelEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
#include <app/reporting/Engine.h>
#include <app/util/basic-types.h>

// TODO: Make number of command handler and command sender configurable
// TODO: Make number of command/read/write client/handler configurable
#define CHIP_MAX_NUM_COMMAND_HANDLER 4
#define CHIP_MAX_NUM_COMMAND_SENDER 4
#define CHIP_MAX_NUM_READ_CLIENT 4
#define CHIP_MAX_NUM_READ_HANDLER 4
#define CHIP_MAX_REPORTS_IN_FLIGHT 1
#define CHIP_MAX_REPORTS_IN_FLIGHT 4
#define IM_SERVER_MAX_NUM_PATH_GROUPS 8
#define CHIP_MAX_NUM_WRITE_CLIENT 1
#define CHIP_MAX_NUM_WRITE_HANDLER 1
#define CHIP_MAX_NUM_WRITE_CLIENT 4
#define CHIP_MAX_NUM_WRITE_HANDLER 4

namespace chip {
namespace app {
Expand Down