forked from facchinm/avrdude
-
Notifications
You must be signed in to change notification settings - Fork 0
mainline avrdude imported from svn://svn.savannah.nongnu.org/avrdude/trunk
License
doom-fr/avrdude
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
See the documentation file for the details. The latest version of AVRDUDE is always available here: http://savannah.nongnu.org/projects/avrdude Important environment variables for ./configure: ================================================ CPPFLAGS: C preprocessor flags (*not* "C++") This is the place to put additional (non-standard) -I options into. For example, if your Windows system has LibUSB-Win32 installed into \\WINDOWS\ProgramFiles\LibUSB-Win32, use CPPFLAGS=-I/WINDOWS/ProgramFiles/LibUSB-Win32/include to tell configure where to search for the header files. (The use of forward slashes rather than backslashes can often simplify things. Note that the Windows system services internally treat both the same. It's only cmd.exe which requires backslashes as the directory separator.) LDFLAGS: Linker options This is the place to make additional library locations known to the linker. To continue the above example, use LDFLAGS=-L/WINDOWS/ProgramFiles/LibUSB-Win32/lib/gcc to make the linker search for "libusb.a" in that directory. Linux users: make sure the header files are installed ===================================================== While many Linux distributions install the libraries needed by AVRDUDE (libusb, libelf) by default, they leave out the corresponding header files. Consequently, the configure script won't find them, so these libraries could not be used. Usually, the packages with the header files (and static libraries) are derived from the regular package name by appending "-devel". Thus, make sure you have "libusb-devel" and "libelf-devel" installed before running the configure script. (Same goes for libftdi.) . Linux Installation ================== This was tested on Ubuntu 20.04 ## formal installation ``` git clone https://github.com/facchinm/avrdude.git cd avrdude/ sudo apt install automake libtool bison flex make sudo apt install libftdi1-dev libusb-dev libftdi-dev libelf-dev libhidapi-dev ./bootstrap ./configure make sudo make install ``` ## usb config #### Add udev rule ``` sudo nano /etc/udev/rules.d/30-avrprog.rules ``` fill the file with `SUBSYSTEM=="usb", SYMLINK+="atmel_ice", MODE="660", GROUP="dialout"` #### reload udev rules ``` sudo udevadm control --reload-rules sudo udevadm trigger ``` #### test rules (only for troubleshooting) Unplug and replug the programmer ``` find /dev/bus/usb/ ! -type d -mmin -2 udevadm info /dev/bus/usb/002/024 sudo udevadm test /devices/pci0000:00/0000:00:14.0/usb2/2-2 ``` (udevadm info : replace by the previous result) (udevadm test : replace by #DEVPATH of info value) Unplug and replug ls -l /dev/bus/usb/002/024 #### dialout group ``` groups ``` Verify `dialout` group is listed If not : ``` sudo usermod -a -G dialout $USER su - $USER groups ``` (to make it permanent, you have to logout and login back) ### test ``` avrdude -c atmelice_updi -p m4809 -U lock:r:-:h ``` Enjoy !
About
mainline avrdude imported from svn://svn.savannah.nongnu.org/avrdude/trunk
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- HTML 77.1%
- C 16.3%
- JavaScript 4.5%
- Roff 0.5%
- Yacc 0.5%
- XSLT 0.4%
- Other 0.7%