Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
更新时间:2025.5.19前言1.本文介绍使用STM32F103C8T6驱动W5500模块,采用硬件SPI(SPI2)控制W5500;本文介绍的是设置静态IP的方法。
2.因为对于计算机网络以及W5500模块不了解,这里不介绍知识点,只讲述使用方法。
3.详细的介绍及使用请参考官网w5500.com/w5500.html
1. 添加驱动文件添加socket.c、wizchip_conf.c、W5500.c、BSP_W5500.c文件到工程中
2. 代码解析socket.c、wizchip_conf.c、W5500.c这三个文件是官方写好的驱动文件这里不做解析,要想了解官方代码的含义,请参考官网介绍,这里主要解析自己写的驱动文件BSP_W5500.c
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868 ...