aboutsummaryrefslogtreecommitdiff
path: root/iceprog
AgeCommit message (Collapse)Author
2018-08-19iceprog coding style, don't use "assert" as variable nameClifford Wolf
Signed-off-by: Clifford Wolf <clifford@clifford.at>
2018-08-18Slightly more robust flash wait function.Piotr Esden-Tempski
In cases when the FLASH chip is bit flaky and the status register "bounces" this flash_wait should be able to perform a bit better. Also added more verbose output around block erase.
2018-08-18Add a function to read and decode the status register.Piotr Esden-Tempski
Very useful for debugging purposes. ;)
2018-08-18Added the FTDI cable pinout for reference.Piotr Esden-Tempski
2018-08-18Improved JEDEC ID read function.Piotr Esden-Tempski
The function now checks how long the extended JEDEC ID field is for the particular FLASH chip and only reads the amount provided by the chip.
2018-08-18Replaced some more magic numbers with FLASH command IDs.Piotr Esden-Tempski
I missed those the first time around.
2018-08-18Added easier to read chip_select/reset functions.Piotr Esden-Tempski
Just calling a gpio function with two numbers was not very self explanatory. The functions now refer to the actual indended action, chip (de)select for flash, reset and chip (de)select for sram. Reading the code and understanding what steps are taken should be easier now.
2018-08-16Added more code comments.Piotr Esden-Tempski
Main point was to group the code into three logical segments: * MPSSE/FTDI defines and functions * FLASH defines and functions * iceprog implementation core While I was at it I also added a few comments for stuff that was not immediately obvious what it does.
2018-05-30Merge pull request #144 from daveshah1/unbrickClifford Wolf
Add write protection disable to iceprog
2018-03-11Added some flash command definitions to decrease magic number usage.Piotr Esden-Tempski
2018-03-11Added some MPSSE command definitions to decrease magic number usage.Piotr Esden-Tempski
2018-02-12Add write protection disable to iceprogDavid Shah
2018-02-09Add out-of-the-box FT232H support (for Upduino 2, etc)David Shah
2018-01-02Add "iceprog -e"Clifford Wolf
2017-08-31Removed files that are under GNU licensesClifford Wolf
2017-08-01Squelch trailing whitespaceLarry Doolittle
2017-07-17iceprog: Make errors print only the program nameRobert Ou
Previously, the entire argv[0] would be printed.
2017-07-17iceprog: Do not use nonstandard err.hRobert Ou
This header does not exist under MinGW. Replace these functions with standard functions.
2017-07-16makefile: Make install target work for WindowsRobert Ou
2017-07-05Fix coding style in iceprog.c (mostly line breaks and indenting)Clifford Wolf
2017-07-04iceprog: Keep name space cleanRoland Lutz
2017-07-04iceprog: Remove trailing newlineRoland Lutz
2017-07-04iceprog: Break overlong linesRoland Lutz
2017-07-04iceprog: Fix coding style inconsistenciesRoland Lutz
2017-07-04iceprog: Fix error messagesRoland Lutz
2017-07-02iceprog: Add manpageRoland Lutz
2017-07-02iceprog: Return a meaningful exit statusRoland Lutz
2017-07-02iceprog: When reading, don't write more bytes than requestedRoland Lutz
2017-07-02iceprog: Allow programming from pipeRoland Lutz
2017-07-02iceprog: Allow programming from standard inputRoland Lutz
2017-07-02iceprog: Open input/output files before talking to hardwareRoland Lutz
2017-07-02iceprog: Overhaul `--help' textRoland Lutz
2017-07-02iceprog: Add option `--help'Roland Lutz
2017-06-19iceprog: Check for non-applicable optionsRoland Lutz
2017-06-08iceprog: Check for invalid offset/size argumentsRoland Lutz
2017-06-08iceprog: Give more information about invocation errorsRoland Lutz
2017-05-03Reduced the timer latency to 1 (minimum allowed) some users are reporting ↵Salvador E. Tropea
better results
2017-05-03Added code to restore the original timer latency. In this way the user can ↵Salvador E. Tropea
avoid 500 Hz interrupts.
2017-05-03Added a call to ftdi_set_latency_timer to make iceprog performance ↵Salvador E. Tropea
independent of system settings
2017-02-12Clean up MakefilesElvira Khabirova
2016-09-04Minor Makefile typo fixClifford Wolf
2016-09-04The fix will check to see if you are compiling on Mac OS X and set theAdam D. Horden
correct LDLIBS and CFLAGS for Mac OS X. This attempts to detect the correct version of the FTDI headers and sets the correct CFLAGS for the version of the FTDI headers installed. Cleaned up Makefile and removed verbose checking of FTDI version. Cleaned up Makefile and removed verbose checking of uname.
2016-09-04Fix to enable a clean build on Mac OS X.Adam D. Horden
The fix will check to see if you are compiling on Mac OS X and set the correct LDLIBS and CFLAGS for Mac OS X. This attempts to detect the correct version of the FTDI headers and sets the correct CFLAGS for the version of the FTDI headers installed.
2016-09-04Fix to enable a clean build on Mac OS X.Adam D. Horden
The fix will check to see if you are compiling on Mac OS X and set the correct LDLIBS and CFLAGS for Mac OS X.
2016-07-23Give priority to libftdi1 over libftdiJesús Arroyo Torrens
2016-05-16Added missing #include <stdlib.h> to iceprog.cClifford Wolf
2016-05-04Improvements in iceprogClifford Wolf
2016-03-27Fix iceprog on Windows opening binary in text modeBen Pye
2016-03-02Added Makefile support for "make STATIC=1"Clifford Wolf
2016-02-29Use pkg-config for libftdiClifford Wolf