-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Ameba] Implement reading and decoding factorydata from flash (#23758)
* [FactoryData] Implement reading and decoding factorydata from flash - Add FactoryDataDecoder - Revise FactoryDataProvider - Change chipinterface initialization order - Add CHIP_ENABLE_AMEBA_FACTORY_DATA macro to enable/disable flash factorydata - Revise filepath in mbedtls.cmake * [Build] Fix warning and errors * [Build] ignore warning for unused label * [factorydata] dont read factorydata if CONFIG_ENABLE_AMEBA_FACTORY_DATA is disabled Co-authored-by: Andrei Litvin <andy314@gmail.com>
- Loading branch information
Showing
8 changed files
with
371 additions
and
68 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,46 @@ | ||
/* | ||
* | ||
* Copyright (c) 2022 Project CHIP Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include "FactoryDataDecoder.h" | ||
#include "chip_porting.h" | ||
#include <platform/internal/CHIPDeviceLayerInternal.h> | ||
|
||
namespace chip { | ||
namespace DeviceLayer { | ||
|
||
CHIP_ERROR FactoryDataDecoder::ReadFactoryData(uint8_t * buffer, uint16_t * pfactorydata_len) | ||
{ | ||
uint32_t ret = 0; | ||
ret = ReadFactory(buffer, pfactorydata_len); | ||
if (ret != 1) | ||
return CHIP_ERROR_INTERNAL; | ||
|
||
return CHIP_NO_ERROR; | ||
} | ||
|
||
CHIP_ERROR FactoryDataDecoder::DecodeFactoryData(uint8_t * buffer, FactoryData * fdata, uint16_t factorydata_len) | ||
{ | ||
uint32_t ret = 0; | ||
ret = DecodeFactory(buffer, fdata, factorydata_len); | ||
if (ret != 0) | ||
return CHIP_ERROR_INTERNAL; | ||
|
||
return CHIP_NO_ERROR; | ||
} | ||
|
||
} // namespace DeviceLayer | ||
} // namespace chip |
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,38 @@ | ||
/* | ||
* | ||
* Copyright (c) 2022 Project CHIP Authors | ||
* | ||
* 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 <platform/internal/CHIPDeviceLayerInternal.h> | ||
|
||
namespace chip { | ||
namespace DeviceLayer { | ||
|
||
class FactoryDataDecoder | ||
{ | ||
public: | ||
CHIP_ERROR ReadFactoryData(uint8_t * buffer, uint16_t * pfactorydata_len); | ||
CHIP_ERROR DecodeFactoryData(uint8_t * buffer, FactoryData * fdata, uint16_t factorydata_len); | ||
static FactoryDataDecoder & GetInstance() | ||
{ | ||
static FactoryDataDecoder instance; | ||
return instance; | ||
} | ||
}; | ||
|
||
} // namespace DeviceLayer | ||
} // namespace chip |
Oops, something went wrong.