LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
techno.hpp
Go to the documentation of this file.
1#pragma once
2
3// Define the various technology
4
5#include <bitset>
6#include <cstdint>
7
8namespace logicalaccess
9{
10namespace Techno
11{
12typedef enum : uint32_t {
17 FELICA = 16,
18 PROX = 32,
20 ICLASS_15693 = 128, // 5321
21 ICODE1 = 256, // 5321
22 STM14443B = 512 // 5321
24}
25using TechnoBitset = uint32_t;
26}
CardTechnologies
Definition: techno.hpp:12
@ PROX
Definition: techno.hpp:18
@ STM14443B
Definition: techno.hpp:22
@ ICLASS_14443_B
Definition: techno.hpp:16
@ ISO_14443_B
Definition: techno.hpp:14
@ ISO_14443_A
Definition: techno.hpp:13
@ ICODE1
Definition: techno.hpp:21
@ ISO_15693
Definition: techno.hpp:15
@ OK5427_CONFIG_CARDS
Definition: techno.hpp:19
@ FELICA
Definition: techno.hpp:17
@ ICLASS_15693
Definition: techno.hpp:20
Definition: asn1.hpp:9
uint32_t TechnoBitset
Definition: techno.hpp:25