summaryrefslogtreecommitdiffstats
path: root/commandline
Commit message (Collapse)AuthorAgeFilesLines
* commandline: Fixed assert when device was unresponsivecpldcpu2015-03-153-1/+9
|
* commandline: Updated execpldcpu2015-01-121-0/+0
|
* firmware: code clean upcpldcpu2014-07-271-10/+0
|
* commandline: fixed assertcpldcpu2014-07-271-1/+1
| | | | devicereply can be 6 bytes in latest version.
* Support OpenBSDCoues Ludovic2014-07-101-0/+5
|
* commandline: Added signature to configurationreplycpldcpu2014-05-014-25/+52
|
* commandline: fixed fast modecpldcpu2014-03-162-9/+9
|
* commandline: Display correct help for windowscpldcpu2014-03-161-2/+2
|
* command: remove exe from maincpldcpu2014-03-161-0/+0
|
* commandline: Update to 2.0a4 to accomodate for new device configuration ↵cpldcpu2014-03-164-10/+22
| | | | reply for attiny841
* commandline: Added patching of jmp to bootloadercpldcpu2014-03-062-1/+17
|
* commandline: Fix up that may have caused to patch two pagescpldcpu2014-03-062-2/+5
|
* firmware: increase led speedcpldcpu2014-02-201-0/+0
|
* commandline: update buildscpldcpu2014-02-182-0/+0
|
* commandline: update helpcpldcpu2014-02-181-1/+5
|
* commandline: update versioncpldcpu2014-02-181-1/+1
|
* commandline: --no-ansi is default under windows. Ansi does not workcpldcpu2014-02-181-6/+6
|
* commandline: far jmp supportcpldcpu2014-02-181-8/+32
|
* Merge remote-tracking branch 'origin/master' into testing-V2-Newcpldcpu2014-01-154-3/+9
|\ | | | | | | | | Conflicts: commandline/builds/Windows/micronucleus.exe
| * commandline: Add static fat binary for OS XAaron Stone2014-01-141-0/+0
| |
| * commandline: Update Makefile for OS XAaron Stone2014-01-141-2/+8
| |
| * commandline: Add cast to prevent warningcpldcpu2014-01-142-1/+1
| |
* | commandline: Support for new v2 transmission protocolcpldcpu2014-01-051-1/+28
| | | | | | | | | | | | | | The block transfer is now done in the address and indexfield of a setup-packet to save a lot of memory in the firmware: This requires twice the number of transmissions, but is effectively faster due to less bus congestion and resends.
* | commandline: reset vector patching in commandline toolcpldcpu2014-01-053-18/+58
| |
* | commandline: change usb requests to "out" if no data is requestedcpldcpu2014-01-052-3/+3
|/ | | | | zero sized "In" requests require more handshaking, but do not add more error checking or more security.
* commandline: updated windows execpldcpu2013-12-311-0/+0
|
* commandline: do not write to empty pagescpldcpu2013-12-305-17/+29
|
* commandline: clean up folder structurecpldcpu2013-12-302-2/+2
|
* commandline: update windows buildcpldcpu2013-12-171-0/+0
|
* commandline: no functional change - style conformanceBluebie2013-12-181-5/+2
|
* commandline: fixes --erase-only so it actually worksBluebie2013-12-181-10/+1
|
* commandline: Update windows buildcpldcpu2013-12-171-0/+0
|
* commandline: Makefile use shell assignments to execute onceAaron Stone2013-12-171-6/+6
| | | | | Backticks in the variables would execute at each invocation. With Macports, libusb 0.x config is called libusb-legacy-config.
* commandline: whitespaceAaron Stone2013-12-172-59/+71
|
* commandline: use C automatic stringificationAaron Stone2013-12-171-4/+6
|
* commandline: silence a warning since this is used correctlyAaron Stone2013-12-171-1/+1
|
* commandline: pretty sure this should be a comparison not an assignmentAaron Stone2013-12-171-1/+1
|
* commandline: resolve three warningsAaron Stone2013-12-171-4/+5
|
* commandline: Removed hex files that don't belong here?cpldcpu2013-12-172-529/+0
|
* commandline: removed out-of-date mac buildcpldcpu2013-12-171-0/+0
|
* commandline: added --erase-only to micronucleuscpldcpu2013-12-172-32/+45
|
* commandline: readme.. My brain is bad today. no functional changes, just ↵Bluebie2013-12-171-1/+6
| | | | style stuff
* commandline: no functional changes - getting rid of tab charsBluebie2013-12-171-1/+1
|
* commandline: no functional changes - improved readme info on configuring ↵Bluebie2013-12-172-3/+20
| | | | linux to not require root access, and included udev rules file - thanks @sodabrew!
* commandline: style stuff, no functional changesBluebie2013-12-172-12/+12
|
* Update micronucleus.cnixnax2013-09-031-3/+3
| | | More error details upon flash erase/write failures.
* Update micronucleus_lib.c:Bluebie2013-08-301-2/+3
| | | | Result not always 64 - bad assumption that page size is always 64
* some small mistakes I noticed while going through the code with a ↵Louis Beaudoin2013-06-061-26/+26
| | | | | | | | | | fine-toothed comb: main.c - POSTSCRIPT_SIZE should be 6, not 4, now that there's a word to store OSCCAL micronucleus_lib.c - bcdUSB referring to USB Spec 1.1 is used, instead of bcdDevice, referring to the device release number
* commandline: bugfixes for -1 error after erase on OS X - auto recover now worksBluebie2013-02-202-14/+27
|
* Tests on all Linux machines available led to errors such as:Malaclypse The Younger2013-02-191-1/+9
| | | | | | | | | | | | | | | | Erasing the memory ... erasing: 66% complete Error erasing: -84>> Abort mission! error has occured ... Please unplug the device and restart the program. Whereas Windows can recover from this condition with Eep! Connection to device lost during erase! Not to worry This happens on some computers - reconnecting... the Linux version could not correctly interpret the -84 error code returned by the USBDEVFS_CONTROL call. This modification fixes this, re-interpreting the -84 code to -2 and allowing the program to reconnect and succesfully upload the firmware.