Gromov programmer assembly and usage notes(taken from
http://easyelectronics.ru/usb-programma ... sbasp.html)
1. The programming cable length MUST NOT EXCEED 10-15 cm;
2. The programmer will not work via USB-COM adapters (it may work, but programming will be VERY slow);
3. Should UniProf fail to determine the type of MCU, enabling slow mode could help. This is done by placing a tick next to the "Тормоз" label. This option will be available when EEPROM info panel is disabled (see picture below);
slow_mode.png
UniProf works under Windows 98/2k/XP. You may see gibberish instead of cyrillic characters unless you have cyrillic char support enabled in your system. This shouldn't matter much, because the program will still work.
4. AVRDude can be used instead of UniProf. In order to make it work it is necessary to add the following to avrdude.conf:
programmer
id = "nikolaew";
desc = "serial port banging, reset=dtr sck=rts mosi=txd miso=cts";
type = serbb;
reset = 4;
sck = 7;
mosi = 3;
miso = 8;
;
Now it is possible to execute avrdude with the following parameters:
avrdude -n -c nikolaew -P
com_port -p
microwhere
com_port is the used COM port (it may be say
com1) and
micro is the MCU type, e.g.
m324p, see table here:
http://www.nongnu.org/avrdude/user-manu ... ude_4.htmlIf everything is OK then avrdude should reply:
"avrdude: AVR device initialized and ready to accept instructions"
5. Also it is sometimes required to set up the COM port prior to normal programming operation (e.g. set COM port baud rate).
If you have any questions, feel free to ask. Unfortunately I have not used this programmer myself. Nevertheless, I will do my best to help.
You do not have the required permissions to view the files attached to this post.