Skip to content
#

embedded

Here are 2,424 public repositories matching this topic...

Xreki
Xreki commented Apr 18, 2018

paddle-mobile将开发一个新的版本,为了:

  • 支持Paddle Fluid
  • 更小的体积
  • 更快的速度
  • 更广泛地支持各种arm设备和终端平台

因此,paddle-mobile将会进行一次完全的重构,从框架设计到代码开发。在新版本开发完成后,将会删除原有mobile-deep-learning的代码。新版本开发期间,代码将放置在paddle-mobile repo的一个子目录下。对于子目录的命名,目前有3个候选,希望大家投票:

  • 👍 zygote
  • 👎 paddle
  • ❤️ fluid

有更好的建议,请回复issue。相关issue:#121
另外,待新版本代码开发完成,移除老版本mobile-deep-learning代码后,新版本代码将移出子目录,直接放置在paddle-mobile repo下面。

circuitpython
powersoft
powersoft commented Sep 1, 2020

I wont to convert a unixtimestamp to localtime in circuit python.
This is the simple code:

unix_correction = 946684800 # correct to 01-01-2000
timezone = 7200
t=1598887049

def convertUnixTime(t,timezone):
dummy=time.localtime(t-unix_correction+timezone)
return "%4d-%02d-%02d %02d:%02d" % (dummy[0],dummy[1],dummy[2],dummy[3],dummy[4])

Running it I get the error message:

"time

Spadi0
Spadi0 commented Aug 17, 2020

Dhcpv4Client ignores the device checksum capabiltities, and always uses the default value for ChecksumCapabilities. The code responsible can be seen here:
https://github.com/smoltcp-rs/smoltcp/blob/bdfa44270e9c59b3095b555cdf14601f7dc27794/src/dhcp/clientv4.rs#L133

As far as I can tell, this would basically be a one-line fix:

let checksum_caps = iface.device().capabilities().check

Improve this page

Add a description, image, and links to the embedded topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the embedded topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.