I got the ATMega324PB Xplained Pro board and I just wanted to see how it worked with Atmel Studio.
On my new laptop I installed Atmel Studio fresh, then plugged in the board. It popped up as the 324PB as it should have, and so I looked at the example projects they have to offer.
One of them is the "Remorse" application which appears to give you a translation from/to Morse code over the UART.
However, when I tried to run it, I got many compilation errors. The first several were that header files which were in the "utils" folder were unrecognized by the IDE. For example, many files had the line
#include "complier.h"
If I clicked on it and said go to implementation it would open the right file, but the compiler could not find it until I changed it to
#include "utils/compiler.h"
I chased these for a bit until I could find no more, but then I got all sorts of warnings that constants were missing; again, some of them I could find in various sub-folders, but some of them appeared to be missing from the actual AVR library files.
So my question is, is this board still too new to work properly with AVR Studio? Did I screw something up? (this is why I used a clean install, I was hoping it would work "out of the box")
Thanks in advance for anyone's help.