-
Updated
May 20, 2022 - C++
embedded
Here are 3,752 public repositories matching this topic...
-
Updated
Jun 6, 2022 - C
-
Updated
Dec 8, 2021 - Python
-
Updated
Jun 6, 2022 - C
Missing EVENT_QUIT
-
Updated
Jun 6, 2022 - C++
我们欢迎大家自由的提问,包括但不限于任何业务需求,方案设计和workflow各种使用细节和实现原理。
但我也建议大家采用一种smart的提问方式,可以参考XY Problem问题:https://xyproblem.info/
XY Problem倡导大家提问时,一定尽可能的描述自己的原始需求,也就是说清楚一件事:你到底想干啥。而不是描述你试图使用的方案,然后让我们帮你解决方案里的问题。因为你采用的方案可能一开始就是错误的。而我们只能一直猜测,你到底想解决什么问题。沟通效率非常低。
例如这个issue(提问者是我们的好朋友,workflow还没开源就在用了。不用怕伤害他:)
sogou/workflow#658
就是一个典型的例子,用户问如何通过派生WFServer的new_connection函数获得proxy
-
Updated
May 30, 2022 - C++
Is your enhancement proposal related to a problem? Please describe.
access_addr
always seems to be of size 4; that should be #defined.
crc_init
always seem to be of size 3; that should be #defined.
https://github.com/zephyrproject-rtos/zephyr/pull/31009/files#r736229677
https://github.com/zephyrproject-rtos/zephyr/pull/31009/files#r736229386
Describe the solution you'd like
A
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下面。
-
Updated
Jun 2, 2022 - Python
-
Updated
Jun 6, 2022 - C++
-
Updated
Jun 6, 2022 - C++
Related to metering wasm3/wasm3#127 and being able to run a set number of instructions, I'd like to be able to serialize a paused interpreter's state and deserialize it to a new interpreter instance; very roughly,
const interp = new wasm3.Interpreter(module);
interp.interpretNInstructions(100);
const interpState = interp.serializeState();
const interp2 = wasm3.In
- The
set_mode_X()
HIL functions need to support returning an error if hardware does not support that mode or if the implementation cannot put the hardware in to that mode at that time. See for an example where panic is used instead of returning an error https://github.com/tock/tock/pull/2629/files.
Blynk library version: master branch at 144a90f3bdb66c3b6c03cce0335c1f1e304d91d6
IDE: VS Code + PlatformIO
IDE version: 1.52.1
Board type: ESP8266
Additional modules: Arduino ESP8266
Scenario, steps to reproduce
Blynk.run()
blocks if there is no internet connection on the network and connecting to a local server via SSL.
According to my investigation, `BlynkArduinoClientSecure::conn
-
Updated
Jun 6, 2022 - Java
-
Updated
Jun 6, 2022 - C
-
Updated
May 26, 2022
CircuitPython version
Adafruit CircuitPython 7.3.0-rc.2 on 2022-05-21; Raspberry Pi Pico with rp2040
Code/REPL
b = (0xFEED).to_bytes(2,"little")
# next line is not correct code
x = int.from_bytes(b, 2, "little")
print(x==0xFEED)
Behavior
C Python raises a TypeError if too many arguments:
int.from_bytes(bytes([0xFE,0xED]), 2, "big")
Tracebac
-
Updated
May 30, 2022 - C
rosedb is starting to support redis
protocol, so you can add the commands compatible with redis protocol:
- find variable
supportedCommands
incmd/cli.go
, which lists all supported commands and its handler function - find a method in rosedb not listed here
- add the command and its handler function
如何参与 rosedb ?
-
Updated
Jun 6, 2022 - C++
-
Updated
Jun 6, 2022 - C
-
Updated
Jun 6, 2022 - C++
On Linux, packets that stay local to the machine (moving from the host to a container for example) don't always have their checksum computed, see for example https://patchwork.ozlabs.org/patch/261822/.
The proper fix would be to check for TP_STATUS_CSUMNOTREADY, but an easy workaround is to have a way to change the ChecksumCapabilities or DeviceCapabilities.
As a rust noob here my solution for
Improve this page
Add a description, image, and links to the embedded topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the embedded topic, visit your repo's landing page and select "manage topics."
Describe the feature request
Since LVGL is more and more used as an desktop app too, I think it's necessary to have a clean application exit event too.
Right now, all example have a
while(1) { }
in their main function so when you close the app (by clicking the X icon, or Alt+F4 or ...), you're actually leaking all the application objects.For most of them, it's not important, but som