Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • Weird, I can remember using the same ATMega328P with another compiler, where it did work. Though you can check if an external library fits your needs: playground.arduino.cc/Code/QueueList But I would understand if you prefer a solution rather than a work-around? Commented Jul 9, 2015 at 11:29
  • The Arduino doesn't have an operating system, so therefore doesn't have a C standard library. Commented Jul 9, 2015 at 17:07
  • 1
    @mypal125: The Arduino does have a standard C library (avr-libc for the AVR based boards). What it lacks is the C++ STL, but see Nick Gammon's answer on how to add it. Commented Jul 10, 2015 at 7:57
  • @EdgarBonet: TIL! Commented Jul 10, 2015 at 13:36