- /**
- ******************************************************************************
- * @file main.c
- * @author fire
- * @version V1.0
- * @brief 用3.5.0版本库建的工程模板
- ******************************************************************************
- **@attention 内网测试,请保证W5500的IP与测试PC机在同一网段内,且不冲突;
- * @attention 如果是用网线跟PC机直连,请设置PC机本地连接地址IP为静态IP;
- * @attention 网络调试助手打开时的IP地址若是你本地连接地址,请自行设定;
- *
- * 使用本程序,先将w5500_conf.C 文件中的PC_IP,设定为PC机的IP地址,端口号可任意,默认为5000
- *
- ******************************************************************************
- */
- #include <stdio.h>
- #include <string.h>
- #include "stm32f10x.h"
- #include "bsp_spi_flash.h"
- #include "bsp_usart1.h"
- #include "bsp_i2c_ee.h"
- #include "bsp_i2c_gpio.h"
- #include "bsp_led.h"
- #include "bsp_dht11.h"
- #include "w5500.h"
- #include "W5500_conf.h"
- #include "socket.h"
- #include "utility.h"
- /*app函数头文件*/
- #include "tcp_demo.h"
- uint8 buffer[2048];
- int main(void)
- {
- uint16 size=0;
- systick_init(72);/* 初始化Systick工作时钟*/
- NVIC_Configuration();
- USART1_Config(); /*初始化串口通信:115200@8-n-1*/
- i2c_CfgGpio();/*初始化eeprom*/
- LED_GPIO_Config();
-
- printf(" 初始化W5500…… \r\n");
- gpio_for_w5500_config();/* 初始化MCU相关引脚*/
- // SPI_DMA_Config();
- reset_w5500();/*复位W5500*/
- printf(" W5500 Hardware initialized! \r\n");
-
- set_w5500_mac();/*配置W5500MAC地址*/
- if(use_define==1||use_eeprom==1)/*不DHCP获取IP地址,就配置默认IP地址*/
- set_w5500_ip();/*配置W5500IP地址*/
- printf(" 电脑作为TCP客户端连接W5500TCP服务器 \r\n");
- printf(" W5500服务器端口默认为: %d \r\n",W5500_tcp_server_port);
- printf(" 连接成功后,PC机发送数据给W5500,W5500将返回对应数据 \r\n");
- socket_buf_init(txsize, rxsize); /*初始化8个Socket的发送接收缓存大小*/
- printf(" 应用程序执行中……\r\n");
- while(1)//循环执行的函数
- {
- do_tcp_server();/*TCP_Server 数据回环测试程序*/
- }
- }
复制代码
如图,某宝提供的源代码,分享给大家
DMA-W5500.rar
(384.08 KB, 下载次数: 125)
|