Remove now unnecessary pintouts of 802.15.4 panid and channel

This commit is contained in:
Simon Duquennoy 2018-04-13 02:58:40 -07:00
parent 3325c44f4e
commit f933767b4c
3 changed files with 1 additions and 23 deletions

View File

@ -204,15 +204,7 @@ platform_init_stage_three(void)
LOG_INFO("Node id: N/A\n");
}
#if NETSTACK_CONF_WITH_IPV6
LOG_INFO("%s, rf channel %u, CCA threshold %i\n",
NETSTACK_MAC.name,
IEEE802154_DEFAULT_CHANNEL,
CC2420_CONF_CCA_THRESH);
#else /* NETSTACK_CONF_WITH_IPV6 */
LOG_INFO("%s, rf channel %u\n",
NETSTACK_MAC.name, IEEE802154_DEFAULT_CHANNEL);
#endif /* NETSTACK_CONF_WITH_IPV6 */
LOG_INFO("CC2420 CCA threshold %i\n", CC2420_CONF_CCA_THRESH);
#if !NETSTACK_CONF_WITH_IPV6
uart1_set_input(serial_line_input_byte);

View File

@ -107,13 +107,6 @@ PROCESS_THREAD(er_example_server, ev, data)
PRINTF("Starting Erbium Example Server\n");
#ifdef IEEE802154_DEFAULT_CHANNEL
PRINTF("RF channel: %u\n", IEEE802154_DEFAULT_CHANNEL);
#endif
#ifdef IEEE802154_PANID
PRINTF("PAN ID: 0x%04X\n", IEEE802154_PANID);
#endif
PRINTF("uIP buffer: %u\n", UIP_BUFSIZE);
PRINTF("LL header: %u\n", UIP_LLH_LEN);
PRINTF("IP+UDP header: %u\n", UIP_IPUDPH_LEN);

View File

@ -82,13 +82,6 @@ PROCESS_THREAD(plugtest_server, ev, data)
PRINTF("ETSI IoT CoAP Plugtests Server\n");
#ifdef IEEE802154_DEFAULT_CHANNEL
PRINTF("RF channel: %u\n", IEEE802154_DEFAULT_CHANNEL);
#endif
#ifdef IEEE802154_PANID
PRINTF("PAN ID: 0x%04X\n", IEEE802154_PANID);
#endif
PRINTF("uIP buffer: %u\n", UIP_BUFSIZE);
PRINTF("LL header: %u\n", UIP_LLH_LEN);
PRINTF("IP+UDP header: %u\n", UIP_IPUDPH_LEN);