private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback) { OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback)); }
private void DfuDisconnectCallback(ref AMRecoveryDevice callback) { OnDfuDisconnect(new DeviceNotificationEventArgs(callback)); }
private void RecoveryConnectCallback(ref AMRecoveryDevice callback) { OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback)); }
internal DeviceNotificationEventArgs(AMRecoveryDevice device) { this.device = device; }