1 /****************************************************************************** 2 * 3 * Copyright 2022 NXP 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ******************************************************************************/ 18 /////////////////////////////////////////////////////////////////////////////// 19 // THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // 20 /////////////////////////////////////////////////////////////////////////////// 21 22 // This file is a snapshot of an AIDL file. Do not edit it manually. There are 23 // two cases: 24 // 1). this is a frozen version file - do not edit this in any case. 25 // 2). this is a 'current' file. If you make a backwards compatible change to 26 // the interface (from the latest frozen version), the build system will 27 // prompt you to update this file with `m <name>-update-api`. 28 // 29 // You must not make a backward incompatible change to any AIDL file built 30 // with the aidl_interface module type with versions property set. The module 31 // type is used to build AIDL files in a way that they can be used across 32 // independently updatable components of the system. If a device is shipped 33 // with such a backward incompatible change, it has a high risk of breaking 34 // later when a module using the interface is updated, e.g., Mainline modules. 35 36 package vendor.nxp.nxpnfc_aidl; 37 @VintfStability 38 interface INxpNfc { getVendorParam(in String key)39 String getVendorParam(in String key); resetEse(in long resetType)40 boolean resetEse(in long resetType); setNxpTransitConfig(in String transitConfValue)41 boolean setNxpTransitConfig(in String transitConfValue); setVendorParam(in String key, in String value)42 boolean setVendorParam(in String key, in String value); 43 } 44