Ejemplo n.º 1
0
		private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback) {
			OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
		}
Ejemplo n.º 2
0
		private void DfuDisconnectCallback(ref AMRecoveryDevice callback) {
			OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
		}
Ejemplo n.º 3
0
		private void RecoveryConnectCallback(ref AMRecoveryDevice callback) {
			OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
		}
		internal DeviceNotificationEventArgs(AMRecoveryDevice device) {
			this.device = device;
		}
Ejemplo n.º 5
0
 private void RecoveryDisconnectCallback(ref AMRecoveryDevice callback)
 {
     OnRecoveryModeLeave(new DeviceNotificationEventArgs(callback));
 }
Ejemplo n.º 6
0
 private void RecoveryConnectCallback(ref AMRecoveryDevice callback)
 {
     OnRecoveryModeEnter(new DeviceNotificationEventArgs(callback));
 }
Ejemplo n.º 7
0
 private void DfuDisconnectCallback(ref AMRecoveryDevice callback)
 {
     OnDfuDisconnect(new DeviceNotificationEventArgs(callback));
 }
Ejemplo n.º 8
0
 internal DeviceNotificationEventArgs(AMRecoveryDevice device)
 {
     this.device = device;
 }