From f09ecbec34f1b7e8fc9c69feea12d388f6e4613e Mon Sep 17 00:00:00 2001 From: Lorenzooone Date: Tue, 13 Jan 2026 18:56:18 +0100 Subject: [PATCH] Document more Partner CTR options for the future... --- .../Partner_CTR/cypress_partner_ctr_communications.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/CaptureDeviceSpecific/Partner_CTR/cypress_partner_ctr_communications.cpp b/source/CaptureDeviceSpecific/Partner_CTR/cypress_partner_ctr_communications.cpp index d4d3b6d..2919e1a 100644 --- a/source/CaptureDeviceSpecific/Partner_CTR/cypress_partner_ctr_communications.cpp +++ b/source/CaptureDeviceSpecific/Partner_CTR/cypress_partner_ctr_communications.cpp @@ -556,11 +556,13 @@ int StartCaptureDma(cy_device_device_handlers* handlers, const cypart_device_usb // Force it to 30 FPS for now. Could be expanded in the future to have more // options, like "top screens only" or "YUV422/YUV420"... // 0x00 == 60, 0x0110 == 30, 0x0120 == 15 + // 0x00 == RGB888, 0x0100 == YUV422, 0x0120 == YUV420 ret = write_u16_to_address_partner_ctr(handlers, device, 0xF8002005, is_3d ? 0x0110 : 0x0000); if(ret < 0) return ret; // 0x00 == 60, 0x10 == 30, 0x20 == 15 + // 0x00 == RGB888, 0x01 == YUV422, 0x20 == YUV420 ret = write_u16_to_address_partner_ctr(handlers, device, 0xF8002005, is_3d ? 0x0010 : 0x0000); if(ret < 0) return ret;