blob: 2486239f668bdc67359ae77e0000d66f47af8a4f [file] [log] [blame]
/*
* Copyright (C) 2020 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 <stdlib.h>
#include "../includes/common.h"
//This PoC is only for 64-bit builds
#if _64_BIT
#include "phNxpExtns_MifareStd.h"
#endif /* _64_BIT */
int main() {
//This PoC is only for 64-bit builds
#if _64_BIT
uint8_t p_data = 0xA0;
uint32_t len = 1;
phNxpExtns_MfcModuleInit();
Mfc_Transceive(&p_data, len);
#endif /* _64_BIT */
return EXIT_SUCCESS;
}