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

283 Commits

Author SHA1 Message Date
2f13d41119 spurious arduino.exe rebuild 2007-07-19 01:41:03 +00:00
ac683d6e7a Adding avrdude and avrdude.conf (special arduino versions that twiddle dtr and use the real stk500 device signature command). 2007-07-19 01:34:42 +00:00
30537b36b9 Avrdude isn't using cygwin, so it uses normal COM1 device names, not /dev/com1 2007-07-19 01:32:18 +00:00
3d1ebb5e64 Explicitly specifying intel hex to avrdude so it's not confused by paths with :'s in them from Windows drive letters 2007-07-19 00:27:29 +00:00
084b860e60 toggling DTR explicitly before upload (and adding setDTR to serial.java) 2007-07-19 00:26:08 +00:00
b9569c389e Compiled stk500 signature reading avrdude into intel tools; update preferences and project for actual 168 bootloader location. 2007-07-19 00:14:02 +00:00
59be08d318 Adding NG and Diecimila hex files. 2007-07-19 00:00:10 +00:00
79e4b0be67 removing diecimila-specific bootloader 2007-07-18 23:41:37 +00:00
337bd37997 another avrdude 2007-07-18 23:18:46 +00:00
d210c3b884 Adding preferences for the 168 bootloaders. 2007-07-18 22:18:17 +00:00
d0c55e79c7 Modified bootloader burning: AvrdudeUploader now can burn bootloader with avrispmkii (but not parallel port), and the bootloader burning commands take a target. And the menu items are there, but wrong. 2007-07-18 22:17:35 +00:00
f64b201e73 Sharing bootloader source for diecimila and ng. 2007-07-18 22:14:26 +00:00
4659e60810 One bootloader for the Diecimila and NG - just different makefile targets to pass in slightly different defines. 2007-07-18 22:11:27 +00:00
2e287ffb6a Now burning fuses too, adjusted to make avrdude happy (it needs 0's for unused fuses, where avr studio uses 1's). 2007-07-18 21:25:23 +00:00
0276117d36 Don't include a path to the avrdude config file on Linux, avrdude will know where it's config file is. 2007-07-18 14:55:54 +00:00
1a4dfa9d87 Fixing SoftwareSerial bug (call to printByte('0') instead of print('0')). 2007-07-16 15:52:01 +00:00
1a557fae0d Don't activate the pullup on pin 6. 2007-07-09 14:02:39 +00:00
b2018df662 Increasing bootloader delay and timing out after a certain number of errors in received data. 2007-07-07 14:45:55 +00:00
0761e779b0 I somehow checked in the Firmata library in the wrong place, so I am moving it to the right place (sorry all, I am just learning svn... :) 2007-07-01 11:21:02 +00:00
f7b15c6a04 New avrdude: supports usb (libusb statically linked) and the ATmega168. 2007-06-27 00:32:21 +00:00
40eb8a0400 Statically linking avrdude to libusb (so users don't need libusb installed on their system). 2007-06-27 00:04:43 +00:00
d0352ac988 Now passing config file path to avrdude. 2007-06-26 23:35:32 +00:00
931f3f49f7 Upgrading a new version of avrdude (binary and config file) that supports the ATmega168 and has been modified to be able to burn via an AVRISPmkII over usb. 2007-06-26 23:31:27 +00:00
9a09ad4c25 Updating comments. 2007-06-26 23:16:05 +00:00
a31cf8372e Adding a main.cxx to the blank target. It still might not build properly, but this should help. 2007-06-26 23:08:45 +00:00
cdd68870c5 Adding bootloader for the ATmega168 on the diecimila (with a shorter timeout for use with automatic reset capacitor). 2007-06-26 23:07:31 +00:00
5360fa729d Initial version of the avrdude uploader (only supports uploading, not burning the bootloader). 2007-06-21 23:00:31 +00:00
1c0c0fe69b Factoring out uisp from the uploader in preparation for also allowing avrdude. 2007-06-21 22:24:57 +00:00
ca84925df8 Adding debounce example; adding Max/MSP code to the communication examples. 2007-06-20 21:58:14 +00:00
91f22e2d96 Including readme.txt in the windows distribution (and converting it to dos newlines). 2007-05-17 19:52:07 +00:00
d706245ea5 Added the Stepper motor library (and reference, and to the readme). 2007-05-17 17:34:48 +00:00
fa585fd099 Moving Firmata (since it's not ready for release at the moment). 2007-05-09 15:05:47 +00:00
dd9444a718 Activating pull-up resistors on the ATmega168 (in addition to the ATmega8). 2007-05-09 15:05:01 +00:00
aa697966dc Updating readme with latest changes. 2007-05-04 22:05:53 +00:00
cf5574707d Updated reference (includes Paul Badger's improvements and EEPROM library). 2007-05-04 21:57:18 +00:00
42db4942dd Adding EEPROM library examples. 2007-05-04 21:53:23 +00:00
dd3a2c90e1 Updated the makefile to mirror new build system (with .a library and multiple wiring.c files). 2007-05-04 21:52:21 +00:00
c3ca1380dd Adding a -lm to the end of the linker command line to fix a bug with sin(), atof(), etc. (Also removing some command line arguments that were ignored because they didn't come at the end of the command line.) Doesn't seem to make the basic LED blink sketch any bigger. 2007-05-04 19:12:07 +00:00
75fcecf417 Changing default microcontroller to atmega168 from atemga8. 2007-05-04 16:27:57 +00:00
a587bc8a4a Updating examples. 2007-04-23 15:43:12 +00:00
52a40bfac9 Removing duplicate copies of clock cycle macro functions from wiring_private.h. 2007-04-20 23:50:40 +00:00
46c7885bc6 Adding some missing keywords. 2007-04-20 23:19:08 +00:00
81b0054893 Modifying SoftwareSerial timing to work with new digitalRead() and digitalWrite() functions. 2007-04-20 23:18:25 +00:00
d277488310 Cleaning up the core (modified version of a patch by Jim Studt): moving pin definitions to program space to save RAM, changing core function arguments (e.g. pinMode(), digitalWrite()) to uint8_t, restoring old SREG after delayMicroseconds() instead of always enabling interrupts, etc. 2007-04-20 23:17:38 +00:00
440033c814 First working sketch of the Firmata protocol as a library. Just the
printVersion and input messages.
2007-04-14 15:20:14 +00:00
67ce547deb Updating readme with misc. 0008 fixes. 2007-03-04 18:43:01 +00:00
4f53ea6303 Updating fetch.sh and reference to include the EEPROM library documentation. 2007-03-04 18:06:00 +00:00
794d03264a Added missing keywords (attachInterrupt
detachInterrupt
Serial.flush <-- Serial is highlighted, flush is not
randomSeed
random)
2007-03-03 19:47:59 +00:00
88d8326615 Splitting wiring.c into multiple files to get even smaller sketch sizes. 2007-02-03 16:52:51 +00:00
2377bb9ddd Removing delay() in analogRead(). It seems we don't need it. Not sure what changed from before when it seemed necessary to prevent bugs. 2007-02-03 15:36:30 +00:00