AVRFuses
AVRFuses copied to clipboard
Can't run with AVRDude 8.0
I noticed that there is something wrong when using AVRDude 8.0. The app issues FAILURE in the log form. I debugged it and figure out that there is a case sensitive search for the string Version. However on AVRDude 8.0 it prints version - all lower case. So the fix should be in AVRFuseController.m, at line 427, as follows:
range = [line rangeOfString: @"version" options:NSCaseInsensitiveSearch];
I tried to create PR but there was a drama with my credentials.
Best regards