Advertisement

Quick Links

W7200-EVB User's Guide
Version 1.1
© 2011 WIZnet Co., Inc. All Rights Reserved.
For more information, visit our website at
http://www.wiznet.co.kr
1
© Copyright 2011 WIZnet Co., Inc. All rights reserved.
Ver. 1.1

Advertisement

Table of Contents
loading

Summary of Contents for Wiznet W7200-EVB

  • Page 1 W7200-EVB User’s Guide Version 1.1 © 2011 WIZnet Co., Inc. All Rights Reserved. For more information, visit our website at http://www.wiznet.co.kr © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 2: Table Of Contents

    Network configuration for TEST PC ............. 21 9.2.2 Ping Test at Command Prompt ..............22 9.2.3 App. Test – Loopback TEST ............... 22 Physical Specification ................25 Schematic ................... 26 Document History Information ................27 © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 3 Figure 8 Flow Chart of Demonstration ............21 Figure 9 Internet Protocol Properties ............22 Figure 10 Ping Test at Command Prompt ............. 22 Figure 11 W7200-EVB Board Dimension ............25 © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 4: Introduction

    W7200-EVB is the evaluation board for testing iMCU W7200 and prototyping development. W7200-EVB is composed of a W7200 based on ARM Cortex M3 CPU core, a W7200 which acts as Hardwired TCP/IP embedded Ethernet controller, and a FT232R which acts as USB-to-UART interface IC.
  • Page 5: Specification

    On board RJ-45 which is integrated transformer User LED 2Ea Serial Status LED 2Ea Button Reset Switch 1Ea Program Enable Switch 1Ea Expansion Port MCU port expansion 2.54mm Pitch 28mm * 52mm Size © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 6: W7200-Evb Block Diagram

    W5200 GPIO TCP/IP Core Cortex-M3 UART USB-to-UART interface IC Mini-USB B type GPIO PROG. (Power, Programming) Switch GPIO RESET USER Switch LED 1/2 RJ-45 Figure 1 W7200-EVB Block Diagram © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 7: Hardware Layout

    POWER LED POWER Indicate LED ( integrated transformer ) Serial TXD / Serial status LED 2Ea J1 / J2 2.54mm Pitch Serial RXD Expanded Headers Mini USB B-type USB Connector © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 8: Expansion Port Interface

    LED4 TIM3_CH4 TIM_CH2 USART2_TX/ ADC12_IN2/ BOOT1 TIM_CH3 USART2_RX/ ADC12_IN3/ JTDO TIM_CH4 USART1_CK/ JNTRST TIM1_CH1/MCO UART1_TX/ I2C1_SMBAI TIM1_CH2 UART1_RX/ I2C1_SCL/ PA10 TIM1_CH3 TIM4_CH1 UART1_CTS/ CANRX/ I2C1_SDA/ PA11 USBDM/ TIM4_CH2 TIM1_CH4 © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 9 JTCK/SWCLK PB12 USART3_CK/ TIM1_BKIN SPI2_SCK/ PA15 JTDI PB13 USART3_CTS/ TIM1_CH1N SPI2_MISO/ PB14 USART3_RTS/ TIM1_CH2N SPI2_MOSI/ MDIO PB15 TIM1_CH3N W_PW PC14 OSC32_IN W_nRE PC15 OSC32_OUT VIN_5V External VIN (5V) nRESET © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 10: Development Environment

    2. Click “Support->Documents-> Installation Guides” 3. Download up to your operation system. - Download Driver 1. www.fidichip.com 2. Click “Drivers->VCP Drivers” 3. Download up to your operation system. © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 11: Figure 4 Currently Supported Vcp Drivers (16Dec2011)

    Figure 4 Currently Supported VCP Drivers (16DEC2011) © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 12: W7200 Spi

    SpiSendData((addr+idx) & 0x00FF); //Address byte 2 // data write command + data length upper 7bits SpiSendData((data_read_command | ((data_len & 0x7F00) >> 8))); // data length bottom 8bits SpiSendData((data_len & 0x00FF)); © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 13 // data write command + data length upper 7bits SpiSendData((data_write_command | ((data_len & 0x7F00) >> 8))); // data length bottom 8bits SpiSendData((data_len & 0x00FF)); SpiSendData(data_buf[idx]); CSon(); // CS=1, SPI end IINCHIP_ISR_ENABLE(); // Interrupt Service Routine disable © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 14: Reference Firmware

    Please refer to “Socket API for ioPlatform” document. 8.2 Firmware Structure Table 4 Project Hierarchy Directory Files Decryption USER main.c W7200-EVB main function W5200.c, W5200.h I/O functions for W5200 © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 15: Firmware Functions

    UART Interface Initialization WIZ_SPI_Init W5200 SPI Interface Initialization Timer_Configuration Timer Configuration LED3_onoff/LED4_onoff USER LED n Control Function Set_network Configure Network In formations for W5200 WIZ_Config Configure Network In formations © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 16 -ChConfig.port : Destination Port loopback_tcpc(uint8 CHConfig_TypeDef* ChConfig) loopback_udp (User Datagram - ch : socket number [0-7] Protocol) Loopback - port : source port server mode loopback_udp(uint8 ch, uint16 port) © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 17: Firmware Build And Upload

    Build – IAR Embedded Workbench IDE To build and link you project choose “Make” form the “Project” menu, or press F7. Figure 7 Compile on IAR Embedded Workbench IDE © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 18: Upload - Flash Loader Demonstrator

    Upload – Flash Loader Demonstrator Upload (1) Select the Communication port and set setting Note – PROG S/W should be selected ‘PROG’ to connect to W7200-EVB with PC. Upload (2) Check target readable © Copyright 2011 WIZnet Co., Inc. All rights reserved.
  • Page 19 Upload (3) Select device in the target Upload (4) Choose Binary image file in work project Note – Binary image file’s location: …\Work\App\Debug\Exe in project directory © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 20 Upload (5) Select "@0x08000000" in memory address list Upload (6) Select "Next" to upload the binart image file Note – After finishing ‘Download’, PROG S/W should be selected ‘RUN’ to run User APP. © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 21: Application Demonstration

    Prompt App. TEST Figure 8 Flow Chart of Demonstration 9.2 Ping TEST A ping test determines whether your test PC can communicate with the W7200-EVB over the network. 9.2.1 Network configuration for TEST PC 1. Access the "Start" menu and click "Control Panel."...
  • Page 22: Ping Test At Command Prompt

    Ping Test at Command Prompt 1. Access the “Start” in the menu, click “Run”. 2. Enter “cmd" in the "Open:" field, 3. Type “ping 192.168.11.4” (W7200-EVB IP address) in Command Prompt window Figure 10 Ping Test at Command Prompt 9.2.3 App.
  • Page 23 Run (1) Input W7200-EVB IP and Port Run (2) Check "Connected" message © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 24 Run (3) Set Data format; size and base value Run (4) Check the status message in dialog window © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 25: Physical Specification

    Physical Specification Symbols Dimensions (mm) 28.00 25.40 52.00 1.30 1.87 2.54 1.87 Figure 11 W7200-EVB Board Dimension © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 26: Schematic

    Schematic W7200-EVB schematic can be downloading at WIZnet Homepage, www.wiznet.co.kr © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...
  • Page 27: Document History Information

    Dec. 2011 Modify the figures Copyright Notice Copyright 2011 WIZnet, Inc. All Rights Reserved. For more information, visit our website at http://www.wiznet.co.kr Technical Support: http://www.wiznet.co.kr Sales & Distribution: sales@wiznet.co.kr © Copyright 2011 WIZnet Co., Inc. All rights reserved. Ver. 1.1...

Table of Contents