Skip to content

Commit

Permalink
#1681 Resolves issue where audio recordings have incorrect system and…
Browse files Browse the repository at this point in the history
… site labels in metadata. Adds synchronized to channel processing manager's start channel request method to ensure that each channel is configured and started sequentially to avoid chance that simultaneous traffic channel grants occurring across two separate systems get inter-mingled on configuration and startup.
  • Loading branch information
Dennis Sheirer committed Nov 10, 2023
1 parent a848b21 commit 15352b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -365,7 +365,7 @@ public void stop(Channel channel) throws ChannelException
* @param request containing channel and other details
* @throws ChannelException if a source is not available for the channel
*/
private void startProcessing(ChannelStartProcessingRequest request) throws ChannelException
private synchronized void startProcessing(ChannelStartProcessingRequest request) throws ChannelException
{
Channel channel = request.getChannel();

Expand Down
Expand Up @@ -236,7 +236,6 @@ protected void setPLL(long frequency, boolean controlI2C) throws UsbException
writeRegister(Register.DIVIDER, (byte) (div_num << 5), controlI2C);
/* Get the integral number for this divider and frequency */
Integral integral = divider.getIntegral(frequency);
System.out.println("Using divider [" + divider + "] integral [" + integral + "] for [" + frequency + "]");
writeRegister(Register.PLL, integral.getRegisterValue(), controlI2C);
/* Calculate the sigma-delta modulator fractional setting. If it's non-zero, power up the sdm and apply the
fractional setting, otherwise turn it off */
Expand Down

0 comments on commit 15352b9

Please sign in to comment.