Fabisp: Difference between revisions

From Fab Lab Wiki - by NMÍ Kvikan
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
See directions:
See directions:
Download firmware.zip
Download firmware.zip
unzip it
unzip
Open the Makefile
sudo gedit Makefile
Then change this line if you need to
AVRDUDE = avrdude -c avrispmkii -P usb -p $(DEVICE) # edit this line for your programmer
And save the Makefile


Write in terminal
  make clean
  make clean
  make hex
  make hex
sudo make fuse
sudo make program
In order to know whether it works you can connect your fabisp and write
lsusb
and check whether you see usbtiny on the list


sudo make program
==Links==
* http://academy.cba.mit.edu/labs/urbana/mercedes.mane/Website/FabISP/index_fabisp.html

Latest revision as of 15:58, 25 August 2015


See directions: Download firmware.zip

unzip

Open the Makefile

sudo gedit Makefile

Then change this line if you need to

AVRDUDE = avrdude -c avrispmkii -P usb -p $(DEVICE) # edit this line for your programmer

And save the Makefile

Write in terminal

make clean
make hex
sudo make fuse
sudo make program


In order to know whether it works you can connect your fabisp and write

lsusb

and check whether you see usbtiny on the list

Links