Posts

Showing posts from May, 2011

AVRStudio and Ubuntu [ENG]

Image
Hello there!!! Here you can find a simple tutorial which shows how to install AVRStudio 4.18 on Ubuntu 10.04 and use a ZL16PRG programmer to connect to a laboratory device. 1. We need to download AVRStudio from website http://www.atmel.com/dyn/products/tools_card.asp?tool_id=2725 2. Let's install AVRStudio using Wine. 3. After connecting ZL16PRG to USB port we should be able to see it in a system. lsusb we should find our device Bus 003 Device 020: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC 4. Next step is to connect our USB device to Wine COM1 port. In my case I was able to find my USB device in: /dev/serial/by-id/usb-FTDI_USB__-__Serial-if00-port0 Now it's time to male a link between USB device and COM1 on Wine. ln -s /dev/serial/by-id/usb-FTDI_USB__-__Serial-if00-port0 ~/.wine/dosdevices/com1 5. Right now we can test if everything works fine: Have a nice programming :) Used links: https://help.ubuntu.com/c...

AVRStudio na Ubuntu [PL]

Image
Witam serdecznie. Oto prosty tutorial jak zainstalować AVRStudio 4.18 pod Ubuntu 10.04 i podłączyć układ za pomocą programatora ZL16PRG. 1. Ściągamy AVRStudio ze strony producenta: http://www.atmel.com/dyn/products/tools_card.asp?tool_id=2725 2. Instalujemy AVRStudio używając Wine (z moich doświadczeń wynika, że działa) 3. Po podpięciu Programatora ZL16PRG powinniśmy mieć nowe urządzenie USB. sprawdźmy: lsusb powinniśmy znaleźć takie urządzenie: Bus 003 Device 020: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC 4. Podepnijmy nasze urządzenie USB do COM1 na Wine. W moim przypadku urządzenie USB znajdowało się w: /dev/serial/by-id/usb-FTDI_USB__-__Serial-if00-port0 Podepnijmy więc USB pod COM1 w Wine tworząc link: ln -s /dev/serial/by-id/usb-FTDI_USB__-__Serial-if00-port0 ~/.wine/dosdevices/com1 5. Podłączmy się pod układ za pomocą programatora Wygląda na to, że wszystko gra. Miłego pisania aplikacji :) Linki zewnętrzne: h...