aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-09Merge pull request #350 from dcousens/patch-1Sudar Muthu
Fix s/detailled/detailed typo
2015-05-09Fix s/detailled/detailed typoDaniel Cousens
2015-04-13Prepare HISTORY.md for develpment of next versionSudar
2015-04-13Merge pull request #347 from sej7278/masterSudar Muthu
Looks for submenu items first when parsing BOARDS_TXT. Fix #346
2015-04-12Looks for submenu items first when parsing BOARDS_TXTSimon John
as suggested by @michaelbaisch in issue #346 Might want to update HISTORY.md with an "in development" version number.
2015-04-08Update README about the version of Arduino that are supportedSudar
Fix #328
2015-04-07Bump version to v1.5 for release1.5Sudar
2015-04-06Merge pull request #342 from sej7278/masterSudar Muthu
Replace comment about not supporting 1.5 with not supporting SAM
2015-04-06Replace comment about not supporting 1.5 with not supporting SAMSimon John
We can probably close issue #45 and maybe open a new one for ARM SAM support, as 1.6.3 is supported now (and 1.5 is dead).
2015-04-05Add a note about Arduino.orgSudar
2015-04-04Merge branch 'calvinli-patch-1'Sudar
Fix #340
2015-04-04Fix reset for leonardoCalvin Li
I found that the previous reset code did not work for Leonardo or Micro, nor did any reset code anywhere on the internet. An examination of the Arduino IDE source code (and the JNI code behind its serial implementation) shows that it holds RTS high and DTR low when doing the 1200 baud open/close. And it turns out that's exactly what's needed!
2015-04-04Make sure pyserial is properly linkedSudar
2015-04-04Link to Requirements sectionSudar
2015-04-04Tweak pyserial installation instructionsSudar
2015-04-04Better highlighting for code in READMESudar
2015-04-04Merge pull request #339 from sej7278/masterSudar Muthu
Better autodetection of ARDUINO_SKETCHBOOK and ARDUINO_DIR on OSX
2015-04-04Better autodetection of ARDUINO_SKETCHBOOK and ARDUINO_DIR on OSXSimon John
2015-03-28Merge pull request #336 from sej7278/masterSimon John
Added support for VARIANT in submenu's Also fixed sed issue on OSX (copyright symbol)
2015-03-28Replaced UTF-8 copyright symbol causing sed errors on OSXSimon John
Fixes issue #335
2015-03-28Added support for VARIANT in submenu'sSimon John
Also added a note that in certain 1.6 cores (attiny) F_CPU is a submenu item e.g. attiny.menu.clock.internal1.build.f_cpu=1000000L
2015-03-28Add a new example to show how serial monitor can be usedSudar
2015-03-28Whitespace fixes in examplesSudar
2015-03-28Merge pull request #334 from sej7278/masterSimon John
Fixed typo - bracket should be backslash to continue the call to firstword
2015-03-28Fixed typo - bracket should be backslash to continue the call to firstword()Simon John
2015-03-28Locate 1.5+ preferences.txt file on MacSudar
2015-03-28Merge pull request #333 from sej7278/masterSudar Muthu
Add = to PARSE_BOARD regex to make it less greedy.
2015-03-27Now we know that arduino 1.6.1 uses the ~/.arduino15 directorySimon John
we can find preferences.txt Still need to find out where it looks on OSX/Cygwin
2015-03-27Add = to PARSE_BOARD regex to make it less greedy.Simon John
For instance in the Sparkfun 1.6 core, we have: promicro16.build.vid.0=0x1B4F promicro16.build.vid.1=0x1B4F promicro16.build.vid=0x1B4F So we end up matching all 3 instead of just the last one. Adding the = means we're looking for promicro16.build.vid= so not catching the .0 or .1 version.
2015-03-27Merge pull request #331 from sej7278/masterSudar Muthu
Added BOARD_SUB to OBJDIR
2015-03-26Added BOARD_SUB to OBJDIR so that when changing sub boards we don't ↵Simon John
accidentally overwrite existing builds. E.g. mega1280 and mega2560 previously *both* created a "build-mega" directory, now they'll create build-mega-mega2560 and build-mega-mega1280 Only applies to 1.5+ of course, and only when BOARD_SUB is used. 1.0 will still create build-mega2560 and build-mega1280 directories (just BOARD_TAG)
2015-03-25Merge pull request #330 from sej7278/masterSimon John
Added ARCHITECTURE to ALTERNATE_CORE_PATH to support 1.5+ cores
2015-03-25Added ARCHITECTURE to ALTERNATE_CORE_PATH to support 1.5+ cores like ↵Simon John
arduino-tiny. arduino-tiny and damellis' attiny85 cores don't use a vendor, but they do use the avr architecture (subdirectory) in their 1.5/1.6 branches. arduino-tiny builds and is auto-detected now, still needs some work to support sub-cpu's and clocks. damellis doesn't compile, but that's not our makefile it seems.
2015-03-25Merge pull request #329 from sej7278/masterSudar Muthu
Added search of PLATFORM_LIB_NAMES to ARDUINO_LIBS
2015-03-25Always forgetting the history!Simon John
2015-03-25Added search of PLATFORM_LIB_NAMES to ARDUINO_LIBS so that Wire.h is found ↵Simon John
on 1.6.1 and its output separately to SYS_LIB_NAMES Added "sort" to the USER/SYS/PLATFORM _LIBS so we don't get duplicates
2015-03-14Add credit to the contributorsSudar
2015-02-27Merge pull request #322 from onandoffables/linuxgpioSudar Muthu
Add "linuxgpio" to the list of ISP's that don't have a port
2015-02-26Add "linuxgpio" to the list of ISP's that don't have a portonandoffables
2015-02-25Give credit to @fbielejec for #321Sudar
2015-02-25Merge pull request #321 from fbielejec/masterSudar Muthu
instructions on setting CodeBlocks IDE to use the makefiles
2015-02-25instructions on setting CodeBlocks IDE to use the makefilesfilip
2015-01-23Ability to modify USB_TYPE in Teensy.mdpoofjunior
See #313
2015-01-23Merge pull request #315 from sej7278/masterSudar
Get all the commits before #313
2015-01-01Change CXX_NAME to CXX as per the EmacsWiki for Flymake instructions.Simon John
Makes it a bit more standard too.
2014-12-31Merge pull request #307 from Gaboose/prSudar
Ease flashing through ssh. Tweak alternate core support. #306 rebased
2014-12-30Fix build.core parsingGabrielius Mickevicius
Disregard anything before first colon. E.g. build.core = arduino:arduino results in CORE = arduino Print CORE.
2014-12-30TypoGabrielius Mickevicius
2014-12-30Tidy new arduino mk varsGabrielius Mickevicius
Add CORE and FORCE_MONITOR_PORT to arduino-mk-vars.md and FORCE_MONITOR_PORT to config print.
2014-12-30Note on using root in BlinkNetworkRPiGabrielius Mickevicius