Bläddra i källkod

configurable path to toolchain

main
Matthias Lohr 10 år sedan
förälder
incheckning
3734b2ee7b
1 ändrade filer med 7 tillägg och 4 borttagningar
  1. +7
    -4
      teensy3/Makefile

+ 7
- 4
teensy3/Makefile Visa fil

@@ -2,6 +2,9 @@
# The name of your project (used to name the compiled .hex file)
TARGET = main

# Path to your arduino installation
ARDUINOPATH ?= ../../../..

# configurable options
OPTIONS = -DF_CPU=48000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH

@@ -16,14 +19,14 @@ OPTIONS += -D__MK20DX128__ -DARDUIO=104
#************************************************************************

# path location for Teensy Loader, teensy_post_compile and teensy_reboot
TOOLSPATH = ../../../tools # on Linux
#TOOLSPATH = ../../../tools/avr/bin # on Mac or Windows
TOOLSPATH = $(ARDUINOPATH)/hardware/tools # on Linux
#TOOLSPATH = $(ARDUINOPATH)/hardware/tools/tools/avr/bin # on Mac or Windows

# path location for Arduino libraries (currently not used)
LIBRARYPATH = ../../../../libraries
LIBRARYPATH = $(ARDUINOPATH)/libraries

# path location for the arm-none-eabi compiler
COMPILERPATH = ../../../tools/arm-none-eabi/bin
COMPILERPATH = $(ARDUINOPATH)/hardware/tools/arm-none-eabi/bin

#************************************************************************
# Settings below this point usually do not need to be edited

Laddar…
Avbryt
Spara