Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Include the following files in your project tree from the µC/TCP-IP source code distribution, as indicated in Figure - µC/TCP-IP Source Code. In this figure, the IP folder only show shows the subfolder IPv4 as an example. If you are running with IPv6, please add the IPv6 folder instead or add both IPv4 and IPv6 folders if you want your project to support both IP versionversions

 

Anchor
Figure - µC/TCP-IP Source Code
Figure - µC/TCP-IP Source Code

...

As indicated in the Figure - µC/TCP-IP Source Code, all the files in the Source folder must be added to your project tree. Furthermore, if a TCP/IP port exists for your CPU architecture inside de the Ports folder, you can also include it to your project files.

...

\Micrium\Software\uC-TCPIP
\Micrium\Software\uC-TCPIP\Dev\WiFi\<device_name>
\Micrium\Software\uC-TCPIP\Dev\WiFi\Manager\Generic

...

Inside the net_dev_cfg.c file, there are different device configuration templates.

Since that, in this section, the example project we want to run is with in this section features a WiFi device, the configuration that interests us is beneath the section "EXAMPLE WIFI DEVICE CONFIGURATION".

...

As previously mentioned, the µC/TCP-IP static configurations are located in the net_cfg.h file. For this getting started guide, the template file without modification should be enough to get you started. Depending on your Interface device configuration, it is possible that you would need to adjust the µC/TCP-IP queues' configurations as listed in Listing - µC/TCP-IP Static Configuration Modifications. Refer to section Static Stack Configuration for more details on the TCP-IP queues' configurations.

Anchor
µC/TCP-IP Static Configuration Modifications
µC/TCP-IP Static Configuration Modifications

Panel
borderWidth0
titleµC/TCP-IP Static Configuration Modifications

#define  NET_CFG_IF_RX_Q_SIZE                    50

#define  NET_CFG_IF_TX_DEALLOC_Q_SIZE            50


Tasks Priority

The net_cfg.c file includes the three network task configurations. You will need to defined the priority of each of those tasks. The priorities will depend on the other tasks already present in your application. Refer to section Network Tasks Configuration for all the details on configuring the network tasks and their priority. 

...

Ping (on the PC) should reply back with the ping time to the target. µC/TCP-IP target projects connected to the test PC on the same Ethernet switch or Ethernet cross-over cable achieve ping times of less than 2 milliseconds.

Anchor
Sample Application Setup
Sample Application Setup

Panel
borderWidth0
titleSample Application Setup

Image Added


After you have successfully completed and run the example project, you can use it as a starting point to run other µC/TCP-IP demos you may have purchased.

...