ProjetoBB

Dependencies:   F7_Ethernet WebSocketClient mbed mcp3008

Fork of Nucleo_F746ZG_Ethernet by Dieter Graef

Committer:
DieterGraef
Date:
Sat Jun 18 10:49:12 2016 +0000
Revision:
0:f9b6112278fe
Ethernet for the NUCLEO STM32F746 Board Testprogram uses DHCP and NTP to set the clock

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DieterGraef 0:f9b6112278fe 1 /**
DieterGraef 0:f9b6112278fe 2 * @file
DieterGraef 0:f9b6112278fe 3 * Statistics module
DieterGraef 0:f9b6112278fe 4 *
DieterGraef 0:f9b6112278fe 5 */
DieterGraef 0:f9b6112278fe 6
DieterGraef 0:f9b6112278fe 7 /*
DieterGraef 0:f9b6112278fe 8 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
DieterGraef 0:f9b6112278fe 9 * All rights reserved.
DieterGraef 0:f9b6112278fe 10 *
DieterGraef 0:f9b6112278fe 11 * Redistribution and use in source and binary forms, with or without modification,
DieterGraef 0:f9b6112278fe 12 * are permitted provided that the following conditions are met:
DieterGraef 0:f9b6112278fe 13 *
DieterGraef 0:f9b6112278fe 14 * 1. Redistributions of source code must retain the above copyright notice,
DieterGraef 0:f9b6112278fe 15 * this list of conditions and the following disclaimer.
DieterGraef 0:f9b6112278fe 16 * 2. Redistributions in binary form must reproduce the above copyright notice,
DieterGraef 0:f9b6112278fe 17 * this list of conditions and the following disclaimer in the documentation
DieterGraef 0:f9b6112278fe 18 * and/or other materials provided with the distribution.
DieterGraef 0:f9b6112278fe 19 * 3. The name of the author may not be used to endorse or promote products
DieterGraef 0:f9b6112278fe 20 * derived from this software without specific prior written permission.
DieterGraef 0:f9b6112278fe 21 *
DieterGraef 0:f9b6112278fe 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
DieterGraef 0:f9b6112278fe 23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
DieterGraef 0:f9b6112278fe 24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
DieterGraef 0:f9b6112278fe 25 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
DieterGraef 0:f9b6112278fe 26 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
DieterGraef 0:f9b6112278fe 27 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
DieterGraef 0:f9b6112278fe 28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
DieterGraef 0:f9b6112278fe 29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
DieterGraef 0:f9b6112278fe 30 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
DieterGraef 0:f9b6112278fe 31 * OF SUCH DAMAGE.
DieterGraef 0:f9b6112278fe 32 *
DieterGraef 0:f9b6112278fe 33 * This file is part of the lwIP TCP/IP stack.
DieterGraef 0:f9b6112278fe 34 *
DieterGraef 0:f9b6112278fe 35 * Author: Adam Dunkels <adam@sics.se>
DieterGraef 0:f9b6112278fe 36 *
DieterGraef 0:f9b6112278fe 37 */
DieterGraef 0:f9b6112278fe 38
DieterGraef 0:f9b6112278fe 39 #include "lwip/opt.h"
DieterGraef 0:f9b6112278fe 40
DieterGraef 0:f9b6112278fe 41 #if LWIP_STATS /* don't build if not configured for use in lwipopts.h */
DieterGraef 0:f9b6112278fe 42
DieterGraef 0:f9b6112278fe 43 #include "lwip/def.h"
DieterGraef 0:f9b6112278fe 44 #include "lwip/stats.h"
DieterGraef 0:f9b6112278fe 45 #include "lwip/mem.h"
DieterGraef 0:f9b6112278fe 46
DieterGraef 0:f9b6112278fe 47 #include <string.h>
DieterGraef 0:f9b6112278fe 48
DieterGraef 0:f9b6112278fe 49 struct stats_ lwip_stats;
DieterGraef 0:f9b6112278fe 50
DieterGraef 0:f9b6112278fe 51 void stats_init(void)
DieterGraef 0:f9b6112278fe 52 {
DieterGraef 0:f9b6112278fe 53 #ifdef LWIP_DEBUG
DieterGraef 0:f9b6112278fe 54 #if MEMP_STATS
DieterGraef 0:f9b6112278fe 55 const char * memp_names[] = {
DieterGraef 0:f9b6112278fe 56 #define LWIP_MEMPOOL(name,num,size,desc) desc,
DieterGraef 0:f9b6112278fe 57 #include "lwip/memp_std.h"
DieterGraef 0:f9b6112278fe 58 };
DieterGraef 0:f9b6112278fe 59 int i;
DieterGraef 0:f9b6112278fe 60 for (i = 0; i < MEMP_MAX; i++) {
DieterGraef 0:f9b6112278fe 61 lwip_stats.memp[i].name = memp_names[i];
DieterGraef 0:f9b6112278fe 62 }
DieterGraef 0:f9b6112278fe 63 #endif /* MEMP_STATS */
DieterGraef 0:f9b6112278fe 64 #if MEM_STATS
DieterGraef 0:f9b6112278fe 65 lwip_stats.mem.name = "MEM";
DieterGraef 0:f9b6112278fe 66 #endif /* MEM_STATS */
DieterGraef 0:f9b6112278fe 67 #endif /* LWIP_DEBUG */
DieterGraef 0:f9b6112278fe 68 }
DieterGraef 0:f9b6112278fe 69
DieterGraef 0:f9b6112278fe 70 #if LWIP_STATS_DISPLAY
DieterGraef 0:f9b6112278fe 71 void
DieterGraef 0:f9b6112278fe 72 stats_display_proto(struct stats_proto *proto, const char *name)
DieterGraef 0:f9b6112278fe 73 {
DieterGraef 0:f9b6112278fe 74 LWIP_PLATFORM_DIAG(("\n%s\n\t", name));
DieterGraef 0:f9b6112278fe 75 LWIP_PLATFORM_DIAG(("xmit: %"STAT_COUNTER_F"\n\t", proto->xmit));
DieterGraef 0:f9b6112278fe 76 LWIP_PLATFORM_DIAG(("recv: %"STAT_COUNTER_F"\n\t", proto->recv));
DieterGraef 0:f9b6112278fe 77 LWIP_PLATFORM_DIAG(("fw: %"STAT_COUNTER_F"\n\t", proto->fw));
DieterGraef 0:f9b6112278fe 78 LWIP_PLATFORM_DIAG(("drop: %"STAT_COUNTER_F"\n\t", proto->drop));
DieterGraef 0:f9b6112278fe 79 LWIP_PLATFORM_DIAG(("chkerr: %"STAT_COUNTER_F"\n\t", proto->chkerr));
DieterGraef 0:f9b6112278fe 80 LWIP_PLATFORM_DIAG(("lenerr: %"STAT_COUNTER_F"\n\t", proto->lenerr));
DieterGraef 0:f9b6112278fe 81 LWIP_PLATFORM_DIAG(("memerr: %"STAT_COUNTER_F"\n\t", proto->memerr));
DieterGraef 0:f9b6112278fe 82 LWIP_PLATFORM_DIAG(("rterr: %"STAT_COUNTER_F"\n\t", proto->rterr));
DieterGraef 0:f9b6112278fe 83 LWIP_PLATFORM_DIAG(("proterr: %"STAT_COUNTER_F"\n\t", proto->proterr));
DieterGraef 0:f9b6112278fe 84 LWIP_PLATFORM_DIAG(("opterr: %"STAT_COUNTER_F"\n\t", proto->opterr));
DieterGraef 0:f9b6112278fe 85 LWIP_PLATFORM_DIAG(("err: %"STAT_COUNTER_F"\n\t", proto->err));
DieterGraef 0:f9b6112278fe 86 LWIP_PLATFORM_DIAG(("cachehit: %"STAT_COUNTER_F"\n", proto->cachehit));
DieterGraef 0:f9b6112278fe 87 }
DieterGraef 0:f9b6112278fe 88
DieterGraef 0:f9b6112278fe 89 #if IGMP_STATS
DieterGraef 0:f9b6112278fe 90 void
DieterGraef 0:f9b6112278fe 91 stats_display_igmp(struct stats_igmp *igmp)
DieterGraef 0:f9b6112278fe 92 {
DieterGraef 0:f9b6112278fe 93 LWIP_PLATFORM_DIAG(("\nIGMP\n\t"));
DieterGraef 0:f9b6112278fe 94 LWIP_PLATFORM_DIAG(("xmit: %"STAT_COUNTER_F"\n\t", igmp->xmit));
DieterGraef 0:f9b6112278fe 95 LWIP_PLATFORM_DIAG(("recv: %"STAT_COUNTER_F"\n\t", igmp->recv));
DieterGraef 0:f9b6112278fe 96 LWIP_PLATFORM_DIAG(("drop: %"STAT_COUNTER_F"\n\t", igmp->drop));
DieterGraef 0:f9b6112278fe 97 LWIP_PLATFORM_DIAG(("chkerr: %"STAT_COUNTER_F"\n\t", igmp->chkerr));
DieterGraef 0:f9b6112278fe 98 LWIP_PLATFORM_DIAG(("lenerr: %"STAT_COUNTER_F"\n\t", igmp->lenerr));
DieterGraef 0:f9b6112278fe 99 LWIP_PLATFORM_DIAG(("memerr: %"STAT_COUNTER_F"\n\t", igmp->memerr));
DieterGraef 0:f9b6112278fe 100 LWIP_PLATFORM_DIAG(("proterr: %"STAT_COUNTER_F"\n\t", igmp->proterr));
DieterGraef 0:f9b6112278fe 101 LWIP_PLATFORM_DIAG(("rx_v1: %"STAT_COUNTER_F"\n\t", igmp->rx_v1));
DieterGraef 0:f9b6112278fe 102 LWIP_PLATFORM_DIAG(("rx_group: %"STAT_COUNTER_F"\n", igmp->rx_group));
DieterGraef 0:f9b6112278fe 103 LWIP_PLATFORM_DIAG(("rx_general: %"STAT_COUNTER_F"\n", igmp->rx_general));
DieterGraef 0:f9b6112278fe 104 LWIP_PLATFORM_DIAG(("rx_report: %"STAT_COUNTER_F"\n\t", igmp->rx_report));
DieterGraef 0:f9b6112278fe 105 LWIP_PLATFORM_DIAG(("tx_join: %"STAT_COUNTER_F"\n\t", igmp->tx_join));
DieterGraef 0:f9b6112278fe 106 LWIP_PLATFORM_DIAG(("tx_leave: %"STAT_COUNTER_F"\n\t", igmp->tx_leave));
DieterGraef 0:f9b6112278fe 107 LWIP_PLATFORM_DIAG(("tx_report: %"STAT_COUNTER_F"\n\t", igmp->tx_report));
DieterGraef 0:f9b6112278fe 108 }
DieterGraef 0:f9b6112278fe 109 #endif /* IGMP_STATS */
DieterGraef 0:f9b6112278fe 110
DieterGraef 0:f9b6112278fe 111 #if MEM_STATS || MEMP_STATS
DieterGraef 0:f9b6112278fe 112 void
DieterGraef 0:f9b6112278fe 113 stats_display_mem(struct stats_mem *mem, const char *name)
DieterGraef 0:f9b6112278fe 114 {
DieterGraef 0:f9b6112278fe 115 LWIP_PLATFORM_DIAG(("\nMEM %s\n\t", name));
DieterGraef 0:f9b6112278fe 116 LWIP_PLATFORM_DIAG(("avail: %"U32_F"\n\t", (u32_t)mem->avail));
DieterGraef 0:f9b6112278fe 117 LWIP_PLATFORM_DIAG(("used: %"U32_F"\n\t", (u32_t)mem->used));
DieterGraef 0:f9b6112278fe 118 LWIP_PLATFORM_DIAG(("max: %"U32_F"\n\t", (u32_t)mem->max));
DieterGraef 0:f9b6112278fe 119 LWIP_PLATFORM_DIAG(("err: %"U32_F"\n", (u32_t)mem->err));
DieterGraef 0:f9b6112278fe 120 }
DieterGraef 0:f9b6112278fe 121
DieterGraef 0:f9b6112278fe 122 #if MEMP_STATS
DieterGraef 0:f9b6112278fe 123 void
DieterGraef 0:f9b6112278fe 124 stats_display_memp(struct stats_mem *mem, int index)
DieterGraef 0:f9b6112278fe 125 {
DieterGraef 0:f9b6112278fe 126 char * memp_names[] = {
DieterGraef 0:f9b6112278fe 127 #define LWIP_MEMPOOL(name,num,size,desc) desc,
DieterGraef 0:f9b6112278fe 128 #include "lwip/memp_std.h"
DieterGraef 0:f9b6112278fe 129 };
DieterGraef 0:f9b6112278fe 130 if(index < MEMP_MAX) {
DieterGraef 0:f9b6112278fe 131 stats_display_mem(mem, memp_names[index]);
DieterGraef 0:f9b6112278fe 132 }
DieterGraef 0:f9b6112278fe 133 }
DieterGraef 0:f9b6112278fe 134 #endif /* MEMP_STATS */
DieterGraef 0:f9b6112278fe 135 #endif /* MEM_STATS || MEMP_STATS */
DieterGraef 0:f9b6112278fe 136
DieterGraef 0:f9b6112278fe 137 #if SYS_STATS
DieterGraef 0:f9b6112278fe 138 void
DieterGraef 0:f9b6112278fe 139 stats_display_sys(struct stats_sys *sys)
DieterGraef 0:f9b6112278fe 140 {
DieterGraef 0:f9b6112278fe 141 LWIP_PLATFORM_DIAG(("\nSYS\n\t"));
DieterGraef 0:f9b6112278fe 142 LWIP_PLATFORM_DIAG(("sem.used: %"U32_F"\n\t", (u32_t)sys->sem.used));
DieterGraef 0:f9b6112278fe 143 LWIP_PLATFORM_DIAG(("sem.max: %"U32_F"\n\t", (u32_t)sys->sem.max));
DieterGraef 0:f9b6112278fe 144 LWIP_PLATFORM_DIAG(("sem.err: %"U32_F"\n\t", (u32_t)sys->sem.err));
DieterGraef 0:f9b6112278fe 145 LWIP_PLATFORM_DIAG(("mutex.used: %"U32_F"\n\t", (u32_t)sys->mutex.used));
DieterGraef 0:f9b6112278fe 146 LWIP_PLATFORM_DIAG(("mutex.max: %"U32_F"\n\t", (u32_t)sys->mutex.max));
DieterGraef 0:f9b6112278fe 147 LWIP_PLATFORM_DIAG(("mutex.err: %"U32_F"\n\t", (u32_t)sys->mutex.err));
DieterGraef 0:f9b6112278fe 148 LWIP_PLATFORM_DIAG(("mbox.used: %"U32_F"\n\t", (u32_t)sys->mbox.used));
DieterGraef 0:f9b6112278fe 149 LWIP_PLATFORM_DIAG(("mbox.max: %"U32_F"\n\t", (u32_t)sys->mbox.max));
DieterGraef 0:f9b6112278fe 150 LWIP_PLATFORM_DIAG(("mbox.err: %"U32_F"\n\t", (u32_t)sys->mbox.err));
DieterGraef 0:f9b6112278fe 151 }
DieterGraef 0:f9b6112278fe 152 #endif /* SYS_STATS */
DieterGraef 0:f9b6112278fe 153
DieterGraef 0:f9b6112278fe 154 void
DieterGraef 0:f9b6112278fe 155 stats_display(void)
DieterGraef 0:f9b6112278fe 156 {
DieterGraef 0:f9b6112278fe 157 s16_t i;
DieterGraef 0:f9b6112278fe 158
DieterGraef 0:f9b6112278fe 159 LINK_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 160 ETHARP_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 161 IPFRAG_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 162 IP_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 163 IGMP_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 164 ICMP_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 165 UDP_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 166 TCP_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 167 MEM_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 168 for (i = 0; i < MEMP_MAX; i++) {
DieterGraef 0:f9b6112278fe 169 MEMP_STATS_DISPLAY(i);
DieterGraef 0:f9b6112278fe 170 }
DieterGraef 0:f9b6112278fe 171 SYS_STATS_DISPLAY();
DieterGraef 0:f9b6112278fe 172 }
DieterGraef 0:f9b6112278fe 173 #endif /* LWIP_STATS_DISPLAY */
DieterGraef 0:f9b6112278fe 174
DieterGraef 0:f9b6112278fe 175 #endif /* LWIP_STATS */
DieterGraef 0:f9b6112278fe 176