1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/** @defgroup MOD_TUTORIAL1 Tutorial 1 (Basic Usage of Libchipcard2)
* @ingroup MOD_TUTORIALS
* @brief Basic usage of Libchipcard2
*/
/** @defgroup MOD_TUTORIAL1A Overview
* @ingroup MOD_TUTORIAL1
*
* This is a small tutorial on how to use the basic functions of
* libchipcard2. It just waits for a card to be inserted and prints some
* card's information.
* This is the most basic type of application using a chipcard, no error
* checking is performed.
*
* This tutorial is intended to show the basics only.
* After studying this tutorial you should advance to the next one, which
* will explain all the methods used.
*
* Usage:
* tutorial1a
*
* @include "tutorial1a.c"
*/
/** @defgroup MOD_TUTORIAL1B Documented
* @ingroup MOD_TUTORIAL1
*
* @include "tutorial1b.c"
*/
/** @defgroup MOD_TUTORIAL1C With error handling
* @ingroup MOD_TUTORIAL1
*
* @include "tutorial1c.c"
*/
/** @defgroup MOD_TUTORIAL2 Tutorial 2 (Extended Usage of Libchipcard2)
* @ingroup MOD_TUTORIALS
* @brief Extended usage of Libchipcard2
*
* @include "tutorial2.c"
*/
/** @defgroup MOD_TUTORIAL3 Tutorial 3 (Extending Basic Cards in Libchipcard2)
* @ingroup MOD_TUTORIALS
* @brief Extending Basic Cards in Libchipcard2
*
* @include "tutorial3.c"
*/
|