
On Tuesday 21 July 2009 23:52:21 Peter Tyser wrote:
examples/atmel_df_pow2.c examples/standalone/.gitignore examples/standalone/Makefile 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?
git's automerging isnt as smart as i'd like it sometimes
--- 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.
you'll have to be a little more specific. this driver only uses common spi functions, so no, there shouldnt be any build failures. -mike