Keyboard firmwares for Atmel AVR and Cortex-M
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile.vusb 378B

123456789101112131415161718
  1. # Following variables need to be set in <target>/Makefile:
  2. # TARGET
  3. # COMMON_DIR
  4. # TARGET_DIR
  5. # TARGET_SRC
  6. # MCU
  7. # F_CPU
  8. # List C source files here. (C dependencies are automatically generated.)
  9. SRC = usbdrv.c \
  10. usbdrvasm.S \
  11. oddebug.c
  12. SRC += $(TARGET_SRC)
  13. # C source file search path
  14. VPATH = $(TARGET_DIR):$(COMMON_DIR):$(COMMON_DIR)/vusb:$(COMMON_DIR)/vusb/usbdrv