MCU = atmega32u2
ARCH = AVR8
BOARD = BOARD_MICROPENDOUS_32U2
F_CPU = 16000000
F_USB = $(F_CPU)
OPTIMIZATION = s
TARGET = Cando
SRC = $(TARGET).c Descriptors.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS)
LUFA_PATH = ../../Lufa-Lib/LUFA/
CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/
LD_FLAGS =
the output is:
Task "RunCompilerTask"
C:\Program Files (x86)\Atmel\Atmel Studio 6.0\make\make.exe -C "C:\Users\mitchjs\Documents\Atmel Studio\Projects\Cando\Cando" -f "makefile" all
The system cannot find the path specified.
The system cannot find the path specified.
make: Entering directory `C:/Users/mitchjs/Documents/Atmel Studio/Projects/Cando/Cando'
""
Begin compilation of project \"Cando\"...
""
f was unexpected at this time.
make: *** [check-source] Error 255
make: Leaving directory `C:/Users/mitchjs/Documents/Atmel Studio/Projects/Cando/Cando'
Done executing task "RunCompilerTask" -- FAILED.
its like the make system doesnt see my toolchain
anyone get this going?
thanks!