1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00
Commit Graph

1605 Commits

Author SHA1 Message Date
30245a7030 arduino.exe was recompiled 2008-09-18 10:44:38 +00:00
009a45a534 Upgrading windows avr-gcc, etc. (but not avrdude) 2008-09-18 10:10:30 +00:00
d94980db56 Updating todo and readme. 2008-09-18 09:36:46 +00:00
bd47d9872f Removing WConstants.h include from Stepper.h so it compiles with new WProgram.h include placement. Updated readme. 2008-09-17 14:15:11 +00:00
d44ee3a000 removed deprecated timer0_overflow_count, which wasn't meant to be public
anyway.  Replaced it with the official millis() method of getting the time.
2008-09-16 17:18:41 +00:00
362b952a68 Adding #ifdef guard to WProgram.h to prevent multiple #includes.
Removing Print class inheritance from Firmata since it's not clear that it can be implemented in a way that's compatible with the Firmata protocol and the Print class interface.
2008-09-15 21:09:13 +00:00
236fcbb122 switched up analogRead() loop to use the revamped millis() function rather than the private timer0_overflow_count variable 2008-09-12 16:53:57 +00:00
dea4079d94 Firmata.h now needs to have WProgram.h, since in the sketches WProgram.h has moved from the first include to the last 2008-09-12 16:53:03 +00:00
8d8b3a3647 copying Firmata-0.4beta2 release into trunk, then I'll adjust it to Arduino-0012 2008-09-12 16:35:07 +00:00
34465d0ac9 Removing wiring core since it's not being kept up-to-date. 2008-09-10 15:22:59 +00:00
876767ff5f Renaming Ethernet examples part 2 (apparently SVN doesn't allow renaming of a file at the same time as its containing directory). 2008-09-08 20:06:32 +00:00
db17d3d5f6 Renaming ethernet library examples. 2008-09-08 20:05:31 +00:00
ab9e945cb3 Commented LCD examples. 2008-09-07 12:21:07 +00:00
f2ab9c6ec9 Updated reference to include new libraries. 2008-09-07 11:54:26 +00:00
0f3400fbae Incorporating ladyada's watchdog timer changes into the bootloader source, but only compiling them in for the Pro and Pro Mini (since Nathan includes them in the bootloader he burns to the board). Added a WATCHDOG_MODS flag to the Makefile to specify that they should be included. Recompiled the pro .hex file to include them. 2008-09-06 22:17:58 +00:00
c8aff1e34f Doc changes. 2008-08-23 17:24:08 +00:00
44d4a4ff8a Moving Servo min and max parameters to the attach() function from the constructor. 2008-08-21 23:48:38 +00:00
191bb02f00 Updating Makefile to derive target name from the current folder. 2008-08-17 20:10:47 +00:00
7630c3a887 Adding Nano and Pro (8 MHz) to boards.txt file; updating Makefile for atmega168 bootloader based on Nathan's changes to allow for customizing of more parameters per-board; including Pro 8 MHz .hex compiled bootloader file; not updating the Diecimila or NG .hex files. 2008-08-16 01:56:41 +00:00
92797b603e Adding ethernet library. 2008-07-30 14:47:36 +00:00
c85f5ba754 Updating todo. 2008-07-28 17:02:31 +00:00
b45d4b5e01 Allowing per-board specification of upload.using. If not given for a board, falls back on the global preference. 2008-07-14 02:09:43 +00:00
d349f4bd7c Updating todo and readme. 2008-07-13 19:27:26 +00:00
3c26693683 Changing pin outs on LiquidCrystal examples and adding parentheses to Servo code. 2008-07-13 19:26:59 +00:00
590a8251ab Upgrading to AVR MacPack 20080514, hacked to replace /usr/local/AVRMacPack-20080514 with dirname $0/.. for everything in bin/. avr-gcc 4 selected. 2008-07-12 16:59:48 +00:00
2ead3627da Moving actual stepping to the end of the step() function so that the first step isn't in the wrong direction. 2008-07-08 02:34:38 +00:00
be66f329b3 Minor changes. 2008-07-02 19:23:20 +00:00
278872728a Adding ADXL3xx accelerometer example; minor comment changes. 2008-07-02 19:06:27 +00:00
0bdc02cea5 Wire library patch to provide better error handling. 2008-06-21 23:16:27 +00:00
3233d7939b Fixing random() to work with longs. 2008-05-26 14:02:32 +00:00
114a19c9a2 Modified Matrix to work with MAX7221: changing latching from rising edge to falling edge. 2008-05-10 05:02:09 +00:00
8588045f7f Adding a couple of Servo examples from Wiring (slightly modified). 2008-05-07 22:15:55 +00:00
8f1f736e36 Adding Servo library (ServoTimer1 from the playground) by Jim Studt. 2008-05-07 19:53:52 +00:00
6a7f8fdf53 Starting to refactor the Compiler so that I can reuse some of this code for building the libraries. 2008-05-07 19:06:04 +00:00
8693f95a3f Updating todo and readme. 2008-05-07 18:30:29 +00:00
f84adee213 Moving #include WProgram.h to after other preprocessor directives in the main sketch file. 2008-05-07 18:25:40 +00:00
8f75f0299d Changing Print class to use regular virtual write() function (instead of my hack
ed together version).
2008-05-07 18:24:49 +00:00
ac06b319b0 Adding LiquidCrystal library. 2008-04-19 03:31:36 +00:00
7d2a6a115f Fixing millis() overflow: changing millis() and the timer 0 overflow handler so that the millis count is updated in the interrupt, and so we don't need to do a conversion inside millis(). Updated to do list. 2008-04-18 21:56:14 +00:00
1a89112e45 Adding the Print class. 2008-04-18 18:46:52 +00:00
ab644804ac Factored out print() and println() from HardwareSerial to a base class for sharing with other things (e.g. LiquidCrystal library), eliminating #include's of avr/signal.h (deprecated). Upping version number and modifying to do list. 2008-04-18 18:39:02 +00:00
154809dcee Since Windows and GNU/Linux use a script called 'dist.sh' to make the
package, it makes it easy to script the nightly auto-builds if Mac OS X has
a script called 'dist.sh' also.
2008-04-06 04:53:08 +00:00
28f88a6b5c fixed script to create the .tgz and upload it 2008-04-06 04:34:45 +00:00
057fbfe5b8 first stab at scripts to actually run the build 2008-04-06 04:08:54 +00:00
a0918ef02d first stab at scripts to set up the rsync repository for auto-builds 2008-04-05 22:58:55 +00:00
f6e012eb32 Removing references to antlr preprocessor from the make.sh script, since we're not using it. 2008-03-28 21:55:57 +00:00
ec426f2073 Updates to the readme and todo list. 2008-03-28 21:53:27 +00:00
e4f147ad42 Removing non-FTDI drivers because they were confusing people. Will upload to the website somewhere. 2008-03-28 21:52:39 +00:00
b084a93628 Removing firmwares directory for now since it's empty. 2008-03-28 21:37:31 +00:00
67b3fb71f8 Moving Standard_Firmata out of the distribution because Hans may be making some non-backwards compatible changes. 2008-03-28 21:37:02 +00:00