arduino
arduino copied to clipboard
FPGArduino source
...can anyone confirm if they get this same error trying to use the **randomSeed()** function?
Getting this error during compilation - seems to be related to missing libstdc++ ...is there a possible solution??
``` double tanh(double x) { double x0 = exp(x); double x1 = 1.0 / x0; return ((x0 + x1) / (x0 - x1)); } ``` Should be: `return ((x0 -...
Hi! The board manager already downloads gcc-7, but the compiler settings in platform.txt seem to be outdated. Right now it is not possible to compile for RISC-V.  I tried...
Just did the example SerialEvent with baudrate changed to 19200. Here is the output: /home/magnus/.arduino15/packages/FPGArduino/tools/f32c-compiler/1.0.0/bin/mips-elf-ar rcs /tmp/build1860868207851946728.tmp/core.a /tmp/build1860868207851946728.tmp/UARTClass.cpp.o /home/magnus/.arduino15/packages/FPGArduino/tools/f32c-compiler/1.0.0/bin/mips-elf-ld -N -EL -gc-sections --library-path=/home/magnus/.arduino15/packages/FPGArduino/hardware/f32c/1.0.0/system/mips/lib -nostdlib --section-start=.init=0x400 -lcrt0 /tmp/build1860868207851946728.tmp/mySerialEvent.cpp.o /tmp/build1860868207851946728.tmp/core.a -lulx2s -lm...
8-bit clean stream is needed. please remove XON/XOFF from library or at least let it not be default
arduino serial library: missing support for multiple serial ports
Amazing work by you. It really acts as replacement for Wire in Master case. It really helped a lot.
BASIC interpreter for f32c could be packet as c++ library and as such could be easily added to any arduino sketch.
Great to hear that everything worked. Now it is time for me to give it a try and perhaps write a tutorial on it :) Trying to access the link...