
Hi Mike,
examples/atmel_df_pow2.c | 209 ++++++++++++++++++++++++++++++++++++++++ examples/standalone/.gitignore | 1 + examples/standalone/Makefile | 4 + 3 files changed, 214 insertions(+), 0 deletions(-) create mode 100644 examples/atmel_df_pow2.c
I think there will be some build issues since atmel_df_pow2.c is outside the examples/standalone directory. I imagine you wanted to put atmel_df_pow2.c inside examples/standalone?
<snip>
diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile index dbcfa92..9f67afd 100644 --- a/examples/standalone/Makefile +++ b/examples/standalone/Makefile @@ -86,6 +86,10 @@ ELF = hello_world SREC = hello_world.srec BIN = hello_world.bin
+ELF += atmel_df_pow2 +SREC += atmel_df_pow2.srec +BIN += atmel_df_pow2.bin
These new files aren't going to compile for a lot of boards as is, some conditional compilation will be necessary.
Best, Peter