mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
This commit enables the Thread Network HAL to support the Spinel SPI interface. Bug: 277286756 Test: Build and run otbr-agent on the emulator. Change-Id: I6726eead5686f0afb33e5e2035ebc9021eca5afa
81 lines
2.2 KiB
C++
81 lines
2.2 KiB
C++
|
|
/*
|
|
* Copyright (C) 2022 The Android Open Source Project
|
|
*
|
|
* 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 <openthread/instance.h>
|
|
#include <openthread/logging.h>
|
|
#include <openthread/platform/alarm-milli.h>
|
|
#include <utils/Log.h>
|
|
|
|
void otLogCritPlat(const char* format, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
__android_log_vprint(ANDROID_LOG_FATAL, LOG_TAG, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void otLogWarnPlat(const char* format, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
__android_log_vprint(ANDROID_LOG_WARN, LOG_TAG, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void otLogNotePlat(const char* format, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
__android_log_vprint(ANDROID_LOG_INFO, LOG_TAG, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void otLogInfoPlat(const char* format, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
__android_log_vprint(ANDROID_LOG_INFO, LOG_TAG, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void otLogDebgPlat(const char* format, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
__android_log_vprint(ANDROID_LOG_DEBUG, LOG_TAG, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void otDumpDebgPlat(const char* aText, const void* aData, uint16_t aDataLength) {
|
|
constexpr uint16_t kBufSize = 512;
|
|
char buf[kBufSize];
|
|
|
|
if ((aText != nullptr) && (aData != nullptr)) {
|
|
const uint8_t* data = reinterpret_cast<const uint8_t*>(aData);
|
|
|
|
for (uint16_t i = 0; (i < aDataLength) && (i < (kBufSize - 1) / 3); i++) {
|
|
snprintf(buf + (i * 3), (kBufSize - 1) - (i * 3), "%02x ", data[i]);
|
|
}
|
|
|
|
__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, "%s: %s", aText, buf);
|
|
}
|
|
}
|
|
|
|
OT_TOOL_WEAK void otPlatAlarmMilliFired(otInstance* aInstance) {
|
|
OT_UNUSED_VARIABLE(aInstance);
|
|
}
|