1

I downloaded FreeRTOS and I want to put it on a microcontroller (ATMega32) on a PCB (I'll do it on a breadboard 1st) like this. How can I achieve this?

Thanks

Coder404
  • 742
  • 2
  • 7
  • 21

2 Answers2

3

According to the site, build instructions are included with the source.

Did you look through that?

dwerner
  • 6,462
  • 4
  • 30
  • 44
  • 1
    That wasn't the intent! Glad I had a useful answer for you. – dwerner May 06 '12 at 20:29
  • Quick follow up. on the [supported devices page](http://www.freertos.org/a00090.html#ATMEL) Atmega32 is not on there. What should I do about that? – Coder404 May 06 '12 at 20:29
  • I'd imagine the toolchain setup would be similar to other Atmega products. It should get you some of the way there at least. I'm just guessing now, but there should be an applicable target with GCC available. – dwerner May 06 '12 at 20:32
  • 1
    Here are some samples http://code.google.com/p/freertos-atmega32 and here are some notes on using avr-gcc with atmega32 http://paul.graysonfamily.org/thoughts/avrlinux/ – dwerner May 06 '12 at 20:34
  • let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/10940/discussion-between-coder404-and-dwerner) – Coder404 May 06 '12 at 20:37
3

There is an AVR323 demo, which is completely compatible with the AVR32 as it is the AVR32's predecessor.

http://www.freertos.org/a00098.html http://www.freertos.org/AVR_IAR.html

Those are official ports, although rather old now. There are also lots of contributed ports in the FreeRTOS Interactive! site.

http://interactive.freertos.org/forums/103473-atmel

Regards.

Richard
  • 186
  • 2