From 600eaf7b30b501f0028b77eb1eb3929ea4fe369c Mon Sep 17 00:00:00 2001 From: Gilbert Montague Date: Wed, 20 Aug 2025 11:46:43 -0700 Subject: [PATCH] feature: Add configurable clock freq --- api/device.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/device.proto b/api/device.proto index af221dc..8883fe2 100644 --- a/api/device.proto +++ b/api/device.proto @@ -41,6 +41,9 @@ message DeviceConfiguration { message DeviceSettings { string name = 1; TimeSource time_source = 2; + + // If configurable, the desired FPGA clock frequency in hz + uint32 fpga_clock_freq_hz = 3; } message GetSettingsQuery {