blob: 465452639c6c01c14df02a330a43397d2f32fcbf [file] [log] [blame]
Christina Quasta90eefa2015-02-24 17:52:29 +01001/* ----------------------------------------------------------------------------
2 * ATMEL Microcontroller Software Support
3 * ----------------------------------------------------------------------------
4 * Copyright (c) 2009, Atmel Corporation
5 *
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * - Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the disclaimer below.
13 *
14 * Atmel's name may not be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
20 * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 * ----------------------------------------------------------------------------
28 */
29
30/*------------------------------------------------------------------------------
31 * Headers
32 *------------------------------------------------------------------------------*/
33
34#include "board.h"
35
36#include <string.h>
37
38/*------------------------------------------------------------------------------
39 * Internal definitions
40 *------------------------------------------------------------------------------*/
41
42/** Maximum ucSize in bytes of the smartcard answer to a command.*/
43#define MAX_ANSWER_SIZE 10
44
45/** Maximum ATR ucSize in bytes.*/
46#define MAX_ATR_SIZE 55
Christina Quasta90eefa2015-02-24 17:52:29 +010047/*------------------------------------------------------------------------------
48 * Internal variables
49 *------------------------------------------------------------------------------*/
50/** ISO7816 pins */
51static const Pin pinsISO7816_sniff[] = {PINS_SIM_SNIFF_SIM};
Christina Quast27c643d2015-02-24 19:09:08 +010052static const Pin pins_bus[] = {PINS_BUS_SNIFF};
Christina Quasta90eefa2015-02-24 17:52:29 +010053static const Pin pPwr[] = {
54 /* Enable power converter 4.5-6V to 3.3V; low: off */
55 {SIM_PWEN, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT},
56
Christina Quast27c643d2015-02-24 19:09:08 +010057 /* Enable second power converter: VCC_PHONE to VCC_SIM; high: on */
Christina Quasta90eefa2015-02-24 17:52:29 +010058 {VCC_FWD, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}
59};
60
Christina Quastc0aa7692015-02-25 14:02:01 +010061extern uint32_t char_stat;
62extern uint8_t rcvdChar;
Christina Quasta90eefa2015-02-24 17:52:29 +010063
64/*-----------------------------------------------------------------------------
Christina Quastd2b05f02015-02-25 18:44:24 +010065 * Initialization routine
Christina Quasta90eefa2015-02-24 17:52:29 +010066 *-----------------------------------------------------------------------------*/
Christina Quasta90eefa2015-02-24 17:52:29 +010067
68void Sniffer_Init( void )
69{
70 /* Configure ISO7816 driver */
71 PIO_Configure( pinsISO7816_sniff, PIO_LISTSIZE( pinsISO7816_sniff ) ) ;
72 PIO_Configure( pins_bus, PIO_LISTSIZE( pins_bus) ) ;
73
74 PIO_Configure(pPwr, PIO_LISTSIZE( pPwr ));
75
Christina Quastc0aa7692015-02-25 14:02:01 +010076 _ISO7816_Init();
Christina Quasta90eefa2015-02-24 17:52:29 +010077
Christina Quastc0aa7692015-02-25 14:02:01 +010078 USART_SetReceiverEnabled(USART_PHONE, 1);
Christina Quasta90eefa2015-02-24 17:52:29 +010079}
Christina Quastfb524b92015-02-27 13:39:45 +010080
81void Sniffer_run( void )
82{
83 if (rcvdChar != 0) {
84 TRACE_DEBUG("Rcvd char _%x_ \n\r", rcvdChar);
85 rcvdChar = 0;
86 }
87}