Skip to content

Commit 6348a0d

Browse files
committed
Doc update
1 parent e68fec1 commit 6348a0d

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

docs/devices/Bosean FS-600, FS-1000/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The installation will automatically create a backup of the original firmware in
5555

5656
## Step 4: Configure your device
5757

58-
Start your device and go to Rad Pro's settings, select “Geiger tube”, “HV Profile” and choose an appropriate HV profile: “Energy-saving” is best for measuring background levels of radiation, while “Accuracy” consumes more power but allows measurement of higher radiation levels; “Factory default” is the profile from the original firmware and consumes considerably more power.
58+
Start your device and go to Rad Pro's settings, select “Geiger tube”, “HV Profile” and choose an appropriate HV profile: “Energy-saving” is best for measuring background levels of radiation, while “Accuracy” consumes more power but allows measurement of higher levels of radiation; “Factory default” is the profile from the original firmware and consumes considerably more power.
5959

6060
To enable USB data communications under Windows, install the [CH340 driver](https://www.catalog.update.microsoft.com/Search.aspx?q=USB%5CVID_1A86%26PID_7523).
6161

docs/devices/FNIRSI GC-01/install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If you are unable to install Rad Pro on your device, or your device becomes unre
4343

4444
Go to Rad Pro's settings, select “Geiger tube”, “Conversion factor”, and select the option that matches the Geiger-Müller tube installed in your device.
4545

46-
Within the “Geiger tube” settings, select “HV Profile” and choose an appropriate HV profile: “Energy-saving” is best for measuring background levels of radiation; “Factory default” is the profile from the original firmware and consumes considerably more power.
46+
Within the “Geiger tube” settings, select “HV Profile” and choose an appropriate HV profile: “Energy-saving” is best for measuring background levels of radiation; if “Energy-saving” does not work on your device, try “Energy-saving alt.” (**WARNING:** do not use “Energy-saving alt.” if “Energy-saving” works); “Factory default” is the profile from the original firmware and consumes considerably more power.
4747

4848
If the “Energy-saving” does not produce any tube counts, you will need to setup a custom HV profile to reduce power consumption.
4949

platform.io/src/settings.h

+6-3
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,15 @@ enum
149149
#define TUBE_CONVERSIONFACTOR_DEFAULT TUBE_CONVERSIONFACTOR_J321
150150
#define TUBE_HVPROFILE_FACTORYDEFAULT_FREQUENCY 9207.16F
151151
#define TUBE_HVPROFILE_FACTORYDEFAULT_DUTYCYCLE 0.75F
152-
#define TUBE_HVPROFILE_ENERGYSAVING_FREQUENCY 5000
153-
#define TUBE_HVPROFILE_ENERGYSAVING_DUTYCYCLE 0.015F
154152
#elif defined(APM32)
155153
#define TUBE_CONVERSIONFACTOR_DEFAULT TUBE_CONVERSIONFACTOR_J613
156154
#define TUBE_HVPROFILE_FACTORYDEFAULT_FREQUENCY 47058.82F
157155
#define TUBE_HVPROFILE_FACTORYDEFAULT_DUTYCYCLE 0.5F
156+
#endif
158157
#define TUBE_HVPROFILE_ENERGYSAVING_FREQUENCY 5000
159158
#define TUBE_HVPROFILE_ENERGYSAVING_DUTYCYCLE 0.015F
160-
#endif
159+
#define TUBE_HVPROFILE_ENERGYSAVINGALT_FREQUENCY 5000
160+
#define TUBE_HVPROFILE_ENERGYSAVINGALT_DUTYCYCLE 0.5F
161161
#endif
162162

163163
enum
@@ -168,6 +168,9 @@ enum
168168
#endif
169169
#if defined(TUBE_HVPROFILE_ENERGYSAVING_FREQUENCY)
170170
TUBE_HVPROFILE_ENERGYSAVING,
171+
#endif
172+
#if defined(TUBE_HVPROFILE_ENERGYSAVINGALT_FREQUENCY)
173+
TUBE_HVPROFILE_ENERGYSAVINGALT,
171174
#endif
172175
TUBE_HVPROFILE_CUSTOM,
173176

platform.io/src/tube.c

+13
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,9 @@ static const char *const tubeHVProfileMenuOptions[] = {
422422
#endif
423423
#if defined(TUBE_HVPROFILE_ENERGYSAVING_FREQUENCY)
424424
"Energy-saving",
425+
#endif
426+
#if defined(TUBE_HVPROFILE_ENERGYSAVINGALT_FREQUENCY)
427+
"Energy-saving alt.",
425428
#endif
426429
"Custom profile",
427430
NULL,
@@ -603,6 +606,11 @@ float getTubeHVFrequency(void)
603606
return TUBE_HVPROFILE_ENERGYSAVING_FREQUENCY;
604607
#endif
605608

609+
#if defined(TUBE_HVPROFILE_ENERGYSAVINGALT_FREQUENCY)
610+
case TUBE_HVPROFILE_ENERGYSAVINGALT:
611+
return TUBE_HVPROFILE_ENERGYSAVINGALT_FREQUENCY;
612+
#endif
613+
606614
case TUBE_HVPROFILE_CUSTOM:
607615
return tube.hvFrequency;
608616

@@ -692,6 +700,11 @@ float getTubeHVDutyCycle(void)
692700
return TUBE_HVPROFILE_ENERGYSAVING_DUTYCYCLE;
693701
#endif
694702

703+
#if defined(TUBE_HVPROFILE_ENERGYSAVINGALT_DUTYCYCLE)
704+
case TUBE_HVPROFILE_ENERGYSAVINGALT:
705+
return TUBE_HVPROFILE_ENERGYSAVINGALT_DUTYCYCLE;
706+
#endif
707+
695708
case TUBE_HVPROFILE_CUSTOM:
696709
return tube.hvDutyCycle;
697710

0 commit comments

Comments
 (0)