remove debugging code
authorMatt Ettus <matt@ettus.com>
Thu, 1 Oct 2009 02:55:05 +0000 (19:55 -0700)
committerMatt Ettus <matt@ettus.com>
Thu, 1 Oct 2009 02:55:05 +0000 (19:55 -0700)
usrp2/firmware/apps/txrx.c
usrp2/firmware/lib/eth_mac.c

index fc2f8a49eb50a8c52f058f3fd07016ce91f9bf33..b2487ed89d38f7f5c8b8a9266ffea44861f389e7 100644 (file)
@@ -263,10 +263,7 @@ main(void)
   newline();
 
   ethernet_register_link_changed_callback(link_changed_callback);
-  putstr("Before ethernet_init()\n");
   ethernet_init();
-  putstr("After ethernet_init()\n");
-
 
 #if 0
   // make bit 15 of Tx gpio's be a s/w output
index 2ef1f73f4c8e9879e68821eb6e37869a49f5c1bc..88051dca0e926e04563a8be2a867efabbeb043c0 100644 (file)
@@ -36,7 +36,6 @@ eth_mac_set_addr(const u2_mac_addr_t *src)
     (((unsigned int)src->addr[3])<<16) +
     (((unsigned int)src->addr[4])<<8) +
     (((unsigned int)src->addr[5]));
-  printf("RDBK %x:%x\n",eth_mac->ucast_hi,eth_mac->ucast_lo);
 }