@DonTomGot
You can grep the extension directory tree for resource strings (or ask Gemini to do it for you), there are about 20 resources that that are not in the reference manual, but no Tick1Hz:
~/.vscode/extensions/suunto.suuntoplus-editor-1.42.0/node_modules/@suunto-internal/suuntoplus-tools/lib/project/
You can still lower the refresh / processing frequency by not executing on every 10Hz tick, like this:
// Subscribe to 10 Hz tick, used to refresh canvases
// Refresh is staggered
$.subscribe('/Dev/Time/Tick10hz', function(){
control('#cnv_gauge', 'REFRESH');
if (tenHzTickCounter % 10 === 0 && cnv1Dirty) {
control('#cnv_chart1', 'REFRESH');
} else if (tenHzTickCounter % 10 === 4 && cnv2Dirty) {
control('#cnv_chart2', 'REFRESH');
} else if (tenHzTickCounter % 10 === 8) {
control('#cnv_dec', 'REFRESH');
}
tenHzTickCounter++;
})