Re: [riot-devel] arduino-uno support

2016-05-25 Thread Laurent Navet
Hi, Shared code between atmega260 and atmega328p now live in atmega_common, except startup.c which I dont find how to move it yet, certainly due to the "export UNDEF += $(BINDIR)cpu/startup.o" directive. Tests has been done on emulator since I don't have the mega2560. Regards, Laurent

Re: [riot-devel] devel Digest, Vol 40, Issue 14

2016-06-13 Thread Laurent Navet
: > Thanks Laurent, > I've another question about Arduino on Riot. > How can i add third-part libraries in my arduino-riot project? > I tried to add the DHT library (.h , .cpp) to *Rito/sys/Arduino/include/* > but it depends on *Arduino.h *and the compile

Re: [riot-devel] Arduino + Riot

2016-06-11 Thread Laurent Navet
Hi alessandro, Arduino API is implemented upon RIOT core OS. more info here : https://github.com/RIOT-OS/RIOT/blob/master/sys/arduino/doc.txt 2016-06-11 16:30 UTC+02:00, ALESSANDRO NICOLI : > Hi RIOTers, > I saw the possibility of using Arduino code on Riot's

Re: [riot-devel] arduino-uno support

2016-05-18 Thread Laurent Navet
Here is the Pull Request [1] As a newbie in deep embedded world, there are certainly mistakes or errors, so this is also an RFC. I thought i had an arduino uno, but in fact it was a duemilanove (the one with an atmega328p) so very similar to the uno. I've tested the hello-world example on it and

[riot-devel] arduino-uno support

2016-05-12 Thread Laurent Navet
Hi, Just to let you know that I have a basic port of the arduino-uno board based on an atmega328p uc. My work is largely based on the atmega2560 port. For now, I've managed to build the hello-world and timer_periodic_wakeup examples, and to load and execute generated .elf using the simavr[1]

Re: [riot-devel] arduino-uno support

2016-05-13 Thread Laurent Navet
Great, I'll cleanup code, test on real hardware and let you know. Thank's -- « On ne résout pas un problème avec les modes de pensée qui l’ont engendré. » « You cannot solve current problems with current thinking. Current problems are the result of current thinking »

Re: [riot-devel] arduino-uno support

2016-05-24 Thread Laurent Navet
Hi, A little update on the situation[1], What I have personnaly tested on real hardware and works fine is : - hello_world - timer_periodic_wakeup - ipc_pingpong What should I do now to get it merged ? From what I've read, I need to create a wiki board page, right ? Does it need more tests ?

Re: [riot-devel] Απ: Problem with "make" -lm missing.

2016-08-09 Thread Laurent Navet
> Any chances that I can run on Arduino Uno? Arduino uno is not fully functional for now, depends on your application needs Basically, UART and timers should work, gpio are untested, no pwm Fetch #5590 and #5451 PR and try Good luck, -- « On ne résout pas un problème avec les

Re: [riot-devel] Problem with "make" -lm missing.

2016-08-09 Thread Laurent Navet
Hi, Have you multilib support enabled and installed ? https://github.com/RIOT-OS/RIOT/wiki/Family:-native 2016-08-09 9:02 UTC+02:00, MiTsArAs Jimaras : > Hello to all. > I am trying to build an app with "make clean all flash term" on native > platform, and all I get as a

Re: [riot-devel] Απ: Απ: Απ: Απ: Problem with "make" -lm missing.

2016-08-09 Thread Laurent Navet
> P.S: Anyone who have tried to run an app on Arduino Uno, please be kind to > tell me if they succeed! What I have personnaly tested on real hardware and works fine is : - hello_world - timer_periodic_wakeup - ipc_pingpong from RIOT/examples/ directory -- « On ne résout pas un problème

Re: [riot-devel] arduino-uno support

2016-09-03 Thread Laurent Navet
ones are enough ;-). Those of us > interested (as for example me) will most likely follow your PR anyways. > > BTW: when you write your wiki page on the board can you add a section on > how to use the emulator? > > Regards, > Martine > > 2016-05-25 22:26 GMT+02:00 Lauren

Re: [riot-devel] RIOT and Peripherals

2016-10-07 Thread Laurent Navet
Hi > - I didn't find the pwm.c file, maybe someone erased it during a clean up > operation? pwm need to be implemented for each supported platform, here is the sam3 one for example : https://github.com/RIOT-OS/RIOT/blob/master/cpu/sam3/periph/pwm.c > -Is there any example of using the pwm lib?

Re: [riot-devel] arduino-uno support

2016-09-22 Thread Laurent Navet
gt; Cheers, > Martine > > 2016-09-03 15:34 GMT+02:00 Laurent Navet <laurent.na...@gmail.com>: >> Hi, >> >> I now have a new git branch based on recent master which supports uno >> and duemilanove models. >> all common code is in boards/arduino-commo