Changes between Initial Version and Version 1 of ICSPBlaster


Ignore:
Timestamp:
Sep 5, 2012, 7:34:36 PM (12 years ago)
Author:
pulkomandy
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ICSPBlaster

    v1 v1  
     1= Notes about the hardware =
     2*I don't own the original USB Blaster, only a clone. My device may do things differently from the original.*
     3
     4The original USB Blaster is based on some FTDI chip. There are clones with a lot of different designs. Mine uses some USB-enabled 8051 microcontroller. This doesn't matter much, as they are clones, they should behave the same.
     5
     6The protocol used by the USB Blaster is quite well known, so I'm not going to repeat all of it.
     7
     8== Power supply ==
     9The USB blaster does not power the device being programmed. Instead, it relies on the device to provide a power supply, and the output signals will match the voltage.
     10
     11== Bidirectional pins ==
     12The ICSP protocol requires the data line to be bidirectional. The USB Blaster does not allow that. So we have to tie one output and one input pin on the same data pin to be able to read and write, likely adding some resistors in the mix.
     13
     14= The software =
     15The software is based on libftdi to send data to the device. There is nothing really complicated (yet).
     16
     17== Things to think about ==
     18* Is it possible to use the stream mode of the blaster to send the clock pulses ? Is it useful ?
     19* Is the clock rate ok for the PIC ? Can it be set ?