1 将MicroPython从Raspberry pi(RP2040)移植到Wiznet5K-德赢Vwin官网 网
×

将MicroPython从Raspberry pi(RP2040)移植到Wiznet5K

消耗积分:0 | 格式:zip | 大小:0.00 MB | 2023-06-14

王毅山

分享资料个

描述

这是关于将软件移植到各种应用程序和微控制器的一系列项目。

在本系列的第一个移植中,我将专注于将 MicroPython 从 Raspberry pi (RP2040) 移植到 Wiznet5K。

我已经确认 wiznet5k 不支持 docs.micropython 网站上的#DHCP

poYBAGNY5zeAdRZ7AALSAnHhEuw495.jpg
W5100s-EVB-pico 与 Maker pi pico
 

步骤 1. 更新 WIZNET5K 库

WIZnet提供的#iolibrary更新了很多,增加了一个芯片,应用了这部分。(添加了 W5105(#w5100s)、w5200、w5100 和 w5300)

差异 --git a/drivers/wiznet5k/ethernet/wizchip_conf.cb/drivers/wiznet5k/ethernet/wizchip_conf.c

index 3e54d2c90..9f6182f98 100644
--- a/drivers/wiznet5k/ethernet/wizchip_conf.c
+++ b/drivers/wiznet5k/ethernet/wizchip_conf.c
@@ -5,8 +5,12 @@
//! \version 1.0.1
//! \date 2013/10/21
//! \par  Revision history
+//!       <2015/02/05> Notice
+//!        The version history is not updated after this point.
+//!        Download the latest version directly from GitHub. Please visit the our GitHub repository for ioLibrary.
+//!        >> https://github.com/Wiznet/ioLibrary_Driver
//!       <2014/05/01> V1.0.1  Refer to M20140501
-//!        1. Explicit type casting in wizchip_bus_readbyte() & wizchip_bus_writebyte()
+//!        1. Explicit type casting in wizchip_bus_readdata() & wizchip_bus_writedata()
//            Issued by Mathias ClauBen.
//!           uint32_t type converts into ptrdiff_t first. And then recoverting it into uint8_t*
//!           For remove the warning when pointer type size is not 32bit.
@@ -49,66 +53,101 @@
//
#include "wizchip_conf.h"
-#include "socket.h"
+
+/////////////
+//M20150401 : Remove ; in the default callback function such as wizchip_cris_enter(), wizchip_cs_select() and etc.
+/////////////
/**
* @brief Default function to enable interrupt.
* @note This function help not to access wrong address. If you do not describe this function or register any functions,
* null function is called.
*/
-void 	  wizchip_cris_enter(void)           {};
+//void 	  wizchip_cris_enter(void)           {};
+void 	  wizchip_cris_enter(void)           {}
+

STEP 2. 修改后的 DHCP 超时处理程序

由于代码中缺少中断器方法,因此修改了 Handler 函数。

STEP 3. 修改 CMakeLists.txt 和 Makefileof rp2

在 ports/rp2/CMakeLists.txt

我添加了 SSL 库和 wiznet5k 库

if (MICROPY_PY_WIZNET5K)
   INCLUDE_DIRECTORIES(${MICROPY_DIR}/drivers/wiznet5k/ ${MICROPY_DIR}/drivers/wiznet5k/ethernet/w${MICROPY_PY_WIZNET5K})
endif()

    # axtls
    ${MICROPY_DIR}/lib/axtls/ssl/loader.c
    ${MICROPY_DIR}/lib/axtls/ssl/tls1.c
    ${MICROPY_DIR}/lib/axtls/ssl/tls1_svr.c
    ${MICROPY_DIR}/lib/axtls/ssl/tls1_clnt.c
    ${MICROPY_DIR}/lib/axtls/ssl/x509.c
    ${MICROPY_DIR}/lib/axtls/ssl/openssl.c
    ${MICROPY_DIR}/lib/axtls/ssl/os_port.c
    ${MICROPY_DIR}/lib/axtls/ssl/asn1.c
    ${MICROPY_DIR}/lib/axtls/crypto/aes.c
    ${MICROPY_DIR}/lib/axtls/crypto/bigint.c
    ${MICROPY_DIR}/lib/axtls/crypto/crypto_misc.c
    ${MICROPY_DIR}/lib/axtls/crypto/md5.c
    ${MICROPY_DIR}/lib/axtls/crypto/rsa.c
    ${MICROPY_DIR}/lib/axtls/crypto/sha1.c
    ${MICROPY_DIR}/lib/axtls/crypto/hmac.c
)

if (MICROPY_PY_WIZNET5K)
    set(MICROPY_SOURCE_DRIVERS
        ${MICROPY_DIR}/drivers/bus/softspi.c
    	${MICROPY_DIR}/drivers/wiznet5k/ethernet/w${MICROPY_PY_WIZNET5K}/w${MICROPY_PY_WIZNET5K}.c
        ${MICROPY_DIR}/drivers/wiznet5k/ethernet/socket.c
        ${MICROPY_DIR}/drivers/wiznet5k/ethernet/wizchip_conf.c
        ${MICROPY_DIR}/drivers/wiznet5k/internet/dns/dns.c
        ${MICROPY_DIR}/drivers/wiznet5k/internet/dhcp/dhcp.c
        ${MICROPY_DIR}/extmod/modnetwork.c
        ${MICROPY_DIR}/extmod/modusocket.c
        ${PROJECT_SOURCE_DIR}/modnwwiznet5k.c
)
endif()

在端口/rp2/makefile

poYBAGNY5zmAFcoWAABUnuYUdEM525.png
 

如果想了解以太网相关库的修改,请查看 0001-Added-WIZnet-Chip-library.patch(Github : https://github.com/Wiznet/RP2040-HAT-MicroPython )

步骤 4. 下载

首先,我们需要在 Pico 上加载一个特殊的固件。将 USB micro B 电缆的一端连接到您的计算机。按住 Pico 上的 BOOTSEL 按钮。按住按钮的同时,将 USB 电缆的另一端插入 Pico 板(硬件修订版添加重置按钮(运行))。这将导致 Pico 加载其引导加载程序。

 

poYBAGNY5zyAU2WbAADVGdLwuC8224.png
 

步骤 5. DHCP

poYBAGNY5z6AT4TVAAECVeR4n6Q696.png
 

 

STEP 6. 拉取请求

我已经向 micropython 存储库发送了一个拉取请求,但它没有被应用。

(~2021 年 11 月 23 日)

我不知道为什么它不起作用。

poYBAGNY50CAKiUKAACPK5R2Vt4024.png
 

因此,我使用 diff 制作了一个补丁文件并在 git 命令中应用,并且我还使用了 cmake。

补丁的情况下是用韩文贴出来的,但是看到使用的git命令或者cmake命令都没有问题。

https://blog.naver.com/roruca/222659759055

STEP 7. 添加补丁文件并完成项目

 

如果您只是在 rp2040 上使用 wiznet5k 库,请访问网站 并下载固件

也许下一个项目将是upip 库移植


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表德赢Vwin官网 网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"//www.hzfubeitong.com/m/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="https://m.elecfans.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'将MicroPython从Raspberry pi(RP2040)移植到Wiznet5K',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.hzfubeitong.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);