platform_hardware_interfaces/gnss/aidl/vts/AGnssCallbackAidl.cpp
Shinru Han 7f31c14c0c Add AGnss AIDL HAL (hardware/interfaces)
Bug: 205185251
Test: atest VtsHalGnssTargetTest

Change-Id: Id7ea7f4e3cf274af237bb600ad02d573eea3ed70
2021-12-07 14:58:43 +08:00

24 lines
947 B
C++

/*
* Copyright (C) 2021 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 "AGnssCallbackAidl.h"
#include <log/log.h>
android::binder::Status AGnssCallbackAidl::agnssStatusCb(const AGnssType type,
const AGnssStatusValue status) {
ALOGI("agnssStatusCb type %d status %d", type, status);
return android::binder::Status::ok();
}