Forum Discussion
5 Replies
- FawazJ_Altera
Frequent Contributor
Hello,
There is no official support of converting Arduino code to Nios II C code. The longest way would be to re-write the example you use in Arduino to a bare-metal code for Nios II.
Thanks
- FawazJ_Altera
Frequent Contributor
Hello sir,
Arduino uses special functions of C language which is not supported in Nios II. the code that will be used to run the Arduino needs to be re-written in a plain C format to be compatible with Nios II. If there are libraries behind that Arduino code, you can use them directly with Nios II. However, this can be easily done if your libraries are written in C, if they are written in C++, you might find some challenges in handling them for Nios II since C++ requires large amount of memory to run on Nios II.
Hope this might help.
- MLash2
New Contributor
Ohhh, I see. So there is no way to have the code transferred automatically. I will work on manual translation.
Thanks a lot.
- fedlabs
New Contributor
check out NIOSDUINO
https://www.youtube.com/watch?v=YhavjKajX_w
https://github.com/dimag0g/nios_duino
Hope this helps
All the best