-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
AVRFusesController.h
34 lines (26 loc) · 1015 Bytes
/
AVRFusesController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* AVRFusesController */
#import <Cocoa/Cocoa.h>
#import "AVRFusesWindowController.h"
#import "PartDefinition.h"
@interface AVRFusesController : AVRFusesWindowController
{
NSMutableDictionary *parts;
PartDefinition *selectedPart;
NSMutableDictionary *fuses;
NSMutableArray *fuseSettings;
NSMutableArray *lockbitSettings;
NSString *avrdudeVersion;
NSMutableDictionary *signatures;
NSString *editedProjectName;
}
@property (atomic, assign) BOOL avrdudeOperationInProgress;
- (void)awakeFromNib;
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication * _Nullable) theApplication;
- (void)loadPartDefinitions;
- (void)loadSignaturesDefinitions;
- (void)loadAvrdudeConfigs;
- (BOOL) avrdudeAvailable;
- (NSString * _Nullable)getNextSerialPort:(io_iterator_t)serialPortIterator;
- (void)addAllSerialPortsToArray:(NSMutableArray * _Nonnull)array;
- (void)execAvrdude: (NSMutableArray * _Nonnull)avrdudeArguments completionHandler:(void (^ _Nullable)(int returnCode))handler;
@end