bus configuration in phone
diff --git a/sam3s_example/simtrace/phone.c b/sam3s_example/simtrace/phone.c
index d08be1b..1a230ca 100644
--- a/sam3s_example/simtrace/phone.c
+++ b/sam3s_example/simtrace/phone.c
@@ -61,6 +61,8 @@
 
 /** ISO7816 pins */
 static const Pin pinsISO7816_PHONE[]    = {PINS_ISO7816_PHONE};
+/** Bus switch pins */
+static const Pin pinsBus[]    = {PINS_BUS_DEFAULT};
 /** ISO7816 RST pin */
 static const Pin pinIso7816RstMC  = PIN_ISO7816_RST_PHONE;
 static uint8_t sim_inserted = 0;
@@ -208,6 +210,8 @@
 void Phone_Master_Init( void ) {
     
     PIO_Configure( pinsISO7816_PHONE, PIO_LISTSIZE( pinsISO7816_PHONE ) ) ;
+    PIO_Configure( pins_bus, PIO_LISTSIZE( pins_bus) ) ;
+
     Config_PhoneRST_IrqHandler();
 
     _ISO7816_Init();