mirror of https://github.com/ARMmbed/mbed-os.git
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2013-2018, ARM Limited, All Rights Reserved
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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.
|
|
*/
|
|
/**
|
|
* \file pn512_irq.c
|
|
* \copyright Copyright (c) ARM Ltd 2013
|
|
* \author Donatien Garnier
|
|
* \details Manage PN512 interrupt requests
|
|
*/
|
|
|
|
#define __DEBUG__ 0
|
|
#ifndef __MODULE__
|
|
#define __MODULE__ "pn512_irq.c"
|
|
#endif
|
|
#include "stack/nfc_errors.h"
|
|
|
|
#include "pn512_irq.h"
|
|
#include "pn512_registers.h"
|
|
#include "pn512_hw.h"
|
|
#include "pn512.h"
|
|
|
|
/** \addtogroup PN512
|
|
* \internal
|
|
* @{
|
|
* \name Interrupts
|
|
* @{
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
* */
|