get latest Marlin_v1 changes

This commit is contained in:
Scott Lahteine
2014-11-26 21:00:02 -08:00
parent d407a43ac1
commit 5714f64927
22 changed files with 905 additions and 140 deletions

14
.travis.yml Normal file
View File

@@ -0,0 +1,14 @@
---
language: c
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq gcc-avr binutils-avr avr-libc gcc-4.8 g++-4.8 arduino
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- gcc --version
- g++ --version
script: "cd Marlin && make HARDWARE_MOTHERBOARD=70 ARDUINO_INSTALL_DIR=/usr/share/arduino"