arduino icon indicating copy to clipboard operation
arduino copied to clipboard

FPGArduino source

Results 10 arduino issues
Sort by recently updated
recently updated
newest added

...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. ![image](https://user-images.githubusercontent.com/9861955/32126263-02799610-bb70-11e7-8253-106e750e628b.png) 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.

enhancement

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...

question