Mbed OS Reference
Loading...
Searching...
No Matches
NFCDefinitions.h
1/* mbed Microcontroller Library
2 * Copyright (c) 2018 ARM Limited
3 * SPDX-License-Identifier: Apache-2.0
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#ifndef MBED_NFC_DEFINITIONS_H
19#define MBED_NFC_DEFINITIONS_H
20
21#include <stdint.h>
22#include <stdbool.h>
23
24#include "stack/nfc_errors.h"
25
26#include "acore/ac_buffer.h"
27
28namespace mbed {
29namespace nfc {
31 bool initiator_t1t : 1;
32 bool initiator_t2t : 1;
33 bool initiator_t3t : 1;
34 bool initiator_iso_dep : 1;
35 bool initiator_nfc_dep : 1;
36 bool initiator_t5t : 1;
37
38 bool target_t1t : 1;
39 bool target_t2t : 1;
40 bool target_t3t : 1;
41 bool target_iso_dep : 1;
42 bool target_nfc_dep : 1;
43 bool target_t5t : 1;
44};
45
46enum nfc_tag_type_t {
47 nfc_tag_type_1,
48 nfc_tag_type_2,
49 nfc_tag_type_3,
50 nfc_tag_type_4a,
51 nfc_tag_type_4b,
52 nfc_tag_type_5
53};
54
55} // namespace nfc
56} // namespace mbed
57
58#endif