Skip to content

Commit b803e3d

Browse files
author
Kevin Michael Boergens
authored
fix wrong unit for impedance test
1 parent 0276258 commit b803e3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ void FPGAchannelComponent::setImpedanceValues(float mag, float phase)
397397
if (impedance != nullptr)
398398
{
399399
if (mag > 10000)
400-
impedance->setText(String(mag/1e6,2)+" mOhm, "+String((int)phase) + " deg",juce::NotificationType::dontSendNotification);
400+
impedance->setText(String(mag/1e6,2)+" MOhm, "+String((int)phase) + " deg",juce::NotificationType::dontSendNotification);
401401
else if (mag > 1000)
402402
impedance->setText(String(mag/1e3,0)+" kOhm, "+String((int)phase) + " deg" ,juce::NotificationType::dontSendNotification);
403403
else

0 commit comments

Comments
 (0)