如果我使用共享库,如何在 Arduino 中构建和上传代码?
How to build and upload code in Arduino if I'm using shared library?
我有一个要嵌入 Arduino .ino
的 C 代码,此代码使用当前工作目录中存在的一些共享库 (.so
)。如何使用 Arduino IDE(或任何其他方法)构建此代码并将其上传到我的 Arduino Yun
。
如果我做的很困难,请在这里建议正确的做法。
"Use Bridge
to access Linux side of Arduino Yun you're using and run bash
or python
or even C using yun-gcc
programs. This will help you embedding shared (.so
) libraries for C and importing other libraries also to expand your scope you're working on. Good luck!"
我有一个要嵌入 Arduino .ino
的 C 代码,此代码使用当前工作目录中存在的一些共享库 (.so
)。如何使用 Arduino IDE(或任何其他方法)构建此代码并将其上传到我的 Arduino Yun
。
如果我做的很困难,请在这里建议正确的做法。
"Use Bridge
to access Linux side of Arduino Yun you're using and run bash
or python
or even C using yun-gcc
programs. This will help you embedding shared (.so
) libraries for C and importing other libraries also to expand your scope you're working on. Good luck!"