Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CameraController/UVC/Models/Controls/UVCControl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ class UVCControl {
}

func getDataFor(type: UVCRequestCodes, length: Int) -> Int {

guard uvcUnit >= 0 else { return 0 }

var value: Int = 0

let requestType = USBmakebmRequestType(direction: kUSBIn, type: kUSBClass, recipient: kUSBInterface)
Expand Down Expand Up @@ -60,6 +63,9 @@ class UVCControl {
}

func setData(value: Int, length: Int) -> Bool {

guard uvcUnit >= 0 else { return false }

var ref = value

let requestType = USBmakebmRequestType(direction: kUSBOut, type: kUSBClass, recipient: kUSBInterface)
Expand Down