From f5ff2c12ebf83e5ea31e74f2d30b25780e33b8fb Mon Sep 17 00:00:00 2001 From: tharexde Date: Mon, 15 Jun 2020 14:32:44 +0200 Subject: [PATCH] added EM4x50 info function --- armsrc/em4x50.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 armsrc/em4x50.h diff --git a/armsrc/em4x50.h b/armsrc/em4x50.h new file mode 100644 index 000000000..76e9b7525 --- /dev/null +++ b/armsrc/em4x50.h @@ -0,0 +1,22 @@ +//----------------------------------------------------------------------------- +// Copyright (C) 2020 tharexde +// +// This code is licensed to you under the terms of the GNU GPL, version 2 or, +// at your option, any later version. See the LICENSE.txt file for the text of +// the license. +//----------------------------------------------------------------------------- +// Low frequency EM4x50 commands +//----------------------------------------------------------------------------- + +#ifndef EM4X50_H +#define EM4X50_H + +#include "../include/em4x50.h" + +typedef struct { + uint8_t sectors[34][7]; +} em4x50_tag_t; + +void em4x50_info(em4x50_data_t *etd); + +#endif /* EM4X50_H */