internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }
Beispiel #2
0
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
Beispiel #3
0
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
Beispiel #4
0
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }