forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added storage to save user credentials, fixed test DRLK-2.10 Signed-off-by: Misha Tkachenko <[email protected]>
- Loading branch information
Showing
9 changed files
with
322 additions
and
489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#include <../Zephyr/ZephyrConfig.h> | ||
|
||
namespace chip { | ||
namespace DeviceLayer { | ||
namespace Internal { | ||
|
||
class LockSettingsStorage: ZephyrConfig | ||
{ | ||
public: | ||
static const ZephyrConfig::Key kConfigKey_LockUser; | ||
static const ZephyrConfig::Key kConfigKey_Credential; | ||
static const ZephyrConfig::Key kConfigKey_LockUserName; | ||
static const ZephyrConfig::Key kConfigKey_CredentialData; | ||
static const ZephyrConfig::Key kConfigKey_UserCredentials; | ||
static const ZephyrConfig::Key kConfigKey_WeekDaySchedules; | ||
static const ZephyrConfig::Key kConfigKey_YearDaySchedules; | ||
static const ZephyrConfig::Key kConfigKey_HolidaySchedules; | ||
}; | ||
} | ||
} | ||
} |
Oops, something went wrong.