Beacon Operation
The RS-UV3A has built-in beacon functionality for transmitting periodic CW identification or messages. This is useful for propagation studies, fox hunting, and repeater ID.
Beacon Types
Section titled “Beacon Types”The RS-UV3A supports two beacon modes:
| Type | Command | Description |
|---|---|---|
| MCW (Audio CW) | BT | FM carrier with CW-modulated audio tone |
| True CW | BC | On-off keyed carrier (OOK) |
MCW vs True CW
Section titled “MCW vs True CW”MCW (Modulated CW):
- Transmits on FM frequencies
- Can be received with any FM receiver (HT, mobile radio)
- Must be used in voice portions of the band
True CW:
- Traditional on-off keying
- Requires a CW receiver (SSB/CW mode)
- Can be used in CW/data portions of bands
- Better range due to narrower bandwidth
Setting Up a Beacon
Section titled “Setting Up a Beacon”Step 1: Set the Beacon Message
Section titled “Step 1: Set the Beacon Message”BMWA2EUJ # Simple callsignBMWA2EUJ BEACON # Callsign with textBM? # Query current messageMaximum message length is 32 characters. Valid characters:
- Letters A–Z
- Numbers 0–9
- Punctuation: period, comma, question mark, slash
- Space
Step 2: Set CW Parameters
Section titled “Step 2: Set CW Parameters”CS15 # 15 WPM (words per minute)CF0800 # 800 Hz tone frequencyCS? # Query speedCF? # Query frequencySpeed range: 5–25 WPM Tone range: 400–1300 Hz
Step 3: Set the Beacon Timer
Section titled “Step 3: Set the Beacon Timer”For MCW beacon:
BT120 # Send beacon every 120 seconds (2 minutes)BT600 # Every 10 minutes (maximum)BT060 # Every 60 seconds (minimum)BT000 # Disable beaconFor true CW beacon:
BC120 # Send CW beacon every 120 secondsBC000 # Disable beaconAdvanced Beacon Features
Section titled “Advanced Beacon Features”Carrier Insertion (True CW Only)
Section titled “Carrier Insertion (True CW Only)”In true CW mode, you can insert unmodulated carrier segments for DF (direction finding):
BM#10WA2EUJ # 10 seconds of carrier, then callsignBMWA2EUJ#05 # Callsign, then 5 seconds carrierBM#15WA2EUJ#10 # 15s carrier, call, 10s carrierThe #nn syntax inserts nn seconds of unmodulated carrier (1–30 seconds).
Message Repeat
Section titled “Message Repeat”Use & to repeat the message continuously during the beacon:
BMWA2EUJ & # Repeats "WA2EUJ" until timer expiresEverything after & is sent once at the end.
Multi-Channel Beacons
Section titled “Multi-Channel Beacons”Send beacons on multiple frequencies by storing different frequencies in memory channels:
# Setup channel 1FS144275 # 2m frequencyPW1 # High powerST1 # Save to channel 1
# Setup channel 2FS222100 # 1.25m frequencyPW1 # High powerST2 # Save to channel 2
# Setup channel 3FS432100 # 70cm frequencyPW0 # Low power (different power level example)ST3 # Save to channel 3
# Enable multi-channel beaconMC3 # Cycle through channels 1-3BT120 # Beacon every 2 minutesThe beacon will:
- Recall channel 1, transmit beacon
- Wait 2 minutes
- Recall channel 2, transmit beacon
- Wait 2 minutes
- Recall channel 3, transmit beacon
- Wait 2 minutes
- Return to channel 1, repeat…
To disable multi-channel mode:
MC0 # Single channel beaconCW Sidetone
Section titled “CW Sidetone”Enable sidetone to hear the CW through the speaker:
SD1 # Sidetone onSD0 # Sidetone off (default)The sidetone level follows the DTMF/CW gain setting:
GT08 # Default tone gainGT12 # Louder tonesManual CW Transmission
Section titled “Manual CW Transmission”Send CW messages on demand:
CTWA2EUJ # Send "WA2EUJ" as MCW (audio)CWWA2EUJ # Send "WA2EUJ" as true CWMaximum manual message length is 28 characters.
Fox Hunting Setup
Section titled “Fox Hunting Setup”For a hidden transmitter (fox hunt):
FS146565 # Out-of-the-way frequencyBMFOX # Simple messageBC060 # Beacon every minutePW0 # Low power for nearby huntingST0 # Save settingsFor longer-range hunts, use true CW with carrier segments:
BM#30FOX # 30 seconds carrier + "FOX"BC120 # Every 2 minutesPW1 # High powerPropagation Beacon
Section titled “Propagation Beacon”For propagation studies across multiple bands:
# Store frequencies for each bandFS144280ST1
FS222100ST2
FS432400ST3
# Configure beaconBMWA2EUJ/B QTH # Beacon message with locatorCS12 # Slow speed for weak signal copyMC3 # Three bandsBC300 # Every 5 minutesBeacon with External Controller
Section titled “Beacon with External Controller”For more sophisticated beacon applications (APRS beacons, GPS-based beacons), connect an Arduino or Raspberry Pi:
- Connect MCU to JP1 (serial + control)
- Use
CTorCWcommands to send messages - Use
TX1/TX0for transmitter control - MCU handles timing and message generation
This allows:
- GPS-derived position beacons
- Temperature/telemetry beacons
- Conditional beacons (only when conditions met)
Stopping a Beacon
Section titled “Stopping a Beacon”BT000 # Disable MCW beaconBC000 # Disable CW beaconOr simply power cycle the RS-UV3A if beacon was not saved with ST0.
Complete Beacon Example
Section titled “Complete Beacon Example”Setting up a 2m MCW beacon for a propagation test:
# Set frequency (beacon sub-band)FS144280
# Configure CWCS18 # 18 WPMCF0750 # 750 Hz toneSD1 # Enable sidetone to verify
# Set messageBMWA2EUJ/B FN20 # Call + grid square
# Set timingBT180 # Every 3 minutes
# Set powerPW1 # High power
# Save to channel and as defaultST1 # Save to channel 1ST0 # Save as power-on defaultThe RS-UV3A will now beacon every 3 minutes until power is removed or beacon is disabled.