-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Infineon CYW30739 TE8 fixes. (#18733)
* Update CYW30739 TE8 fixes. * DoFactoryReset would clear the key-value storage. * Enable OTA requestor for CYW30739 apps. * Refine the flash layout for the OTA functions. * Disable loggings for lighting and lock app. * Reuse Matter heap APIs for CYW30739 OpenThread implementation. * Enable MBEDTLS_CCM_ALT, MBEDTLS_AES_ALT, and MBEDTLS_SHA256_ALT. * Group keys into factory keys and config keys. * Fix CYW30739Config write methods. * Correct the storage entry count for additional keys. * Add and process OTA image header for CYW30739. * Implement network-interfaces and reboot-count. * Fix currentLevel value mismatch. * Implement PICS_MANUAL_OCCUPANCY_CHANGE. * Instantiate identify object for lighting app. * Implement IsFirstImageRun and ConfirmCurrentImage methods of OTAImageProcessorImpl. * Compress large "Data" entries in DS. * Change CHIP_CONFIG_MAX_FABRICS to 5 from 4. * Add a debug arg for CYW30739 SDK. * Implement SupportedCalendarTypes and SupportedLocales. * Implement Door lock cluster. * Revert implementing SupportedCalendarTypes and SupportedLocales. * Remove unneeded codes. * Turn OTAConfig into a namespace. * Use Platform::New Platform::Delete for NetworkInterface. * Fix clang-tidy: readability-else-after-return * Add license blurbs and improve readability for CYW30739 SDK scripts. * Add CHIP license blurbs into CYW30739 SDK scripts. * Remove unneeded returning value from the gen_image function.
- Loading branch information
Showing
56 changed files
with
2,697 additions
and
668 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
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,52 @@ | ||
/* | ||
* | ||
* Copyright (c) 2020 Project CHIP Authors | ||
* Copyright (c) 2018 Nest Labs, Inc. | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <stdint.h> | ||
|
||
struct AppEvent | ||
{ | ||
enum AppEventTypes | ||
{ | ||
kEventType_Button = 0, | ||
kEventType_Timer, | ||
kEventType_Lock, | ||
kEventType_Install, | ||
}; | ||
|
||
uint16_t Type; | ||
|
||
union | ||
{ | ||
struct | ||
{ | ||
uint8_t Action; | ||
} ButtonEvent; | ||
struct | ||
{ | ||
void * Context; | ||
} TimerEvent; | ||
struct | ||
{ | ||
uint8_t Action; | ||
int32_t Actor; | ||
} LockEvent; | ||
}; | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.