Xiegu X6100 Users /g/xiegu-x6100 Xiegu X6100 is a revolutionary self-contained 10 watt HF and 6m SDR transceiver with a large color display, automatic antenna tuner and a built-in high capacity battery.Group users will get a 30USD coupon if the purchase is made via the Radioddity Website!! Please visit https://www.radioddity.com/pages/xiegu-x6100-discount to get your 30USD coupon! Please visit https://www.radioddity.com/X6100 to get your radio. Xiegu X6100 is an ultra-portable SDR transceiver (Software Defined Radio) for HF and 6m. High performance and rich functionality is provided by a direct down-conversion and sampling architecture. With its compact size and smart form factor X6100 brings you a brand-new experience of amateur radio. X6100 has independent baseband and RF units. The baseband unit provides control, advanced data processing, digital signal processing, multimedia interface functions, and can add new functions continuously through firmware updates. The RF unit is based on the SDR structure with separate transmit and receive paths. With a 24bit sampling rate and large dynamic RF front-end unit, the X6100 is a high performance transceiver that lets you work the world when you’re out on an adventure in nature, in the camper or on a beach far away. X6100 sports two USB interfaces, one USB to serial adapter with sound card and another to support mouse, keyboard and storage devices. A microSD card slot allows for backup and transfer of memory channels and voice keyer recordings. An XPA125B amplifier can connect via with a dedicated cable (optional accessory) to provide for 100W transmit power. External third-party SDR software applications like HDSDR can be connected via the I/Q signal output. Xiegu X6100 Key Features HF/50MHz all mode including data 10 W transmit power with external power source, 5 W with internal battery 4� high-resolution color screen, 800*480 pixels resolution Built-in large capacity lithium battery pack, 12V, 3,5 Ah Built-in efficient automatic antenna tuner Standing wave scanner Voice memory keyer CW memory keyer Bluetooth and WiFi supports wireless audio, keyboard & mouse Onboard USB serial adapter with sound card Second USB host port to support mouse, keyboard and storage device High stability TCXO internal clock source Xiegu X6100 General Specifications Frequency coverage: 0,5-30+50-54MHz (Transmit in Ham Bands) Operating modes: USB/LSB (J3E), CW (A1A), FM (F3E),RTTY (F1B), AM (A3E) Minimum Frequency Step: 1 Hz External power supply voltage: DC9-15V Frequency stability: 1ppm (after 20 min warm-up) Antenna Impedance: 50 Ohm Antenna connector type: BNC Operating temperature range: 0C to +50C Xiegu X6100 Receiver Specifications Frequency coverage: 0,5-30+50-54MHz Receive sensitivity (10dBS/N) (PRE=on, ATT=off, NB=off,NR=off, SSB/CW/AM = 10dB S/N, FM = 12dB SINAD) SSB/CW: 0.20 uV AM 0,55-1,79 MHz: 10 uV AM 1,8-30 MHz: 2 uV AM 50-54 MHz: 2 uV ADC: 24 bit Spectrum display bandwidth: 96 kHz Spectrum refresh rate: 25 frames/a Spectrum background noise: -140 dBm Audio output: 0,5W (4 Ohm �10% THD) 2kHz BDR (Critical frequency suppression): �110 dB RMDR: �85 dB IMD3: �95 dBMDS: -138 dBm Xiegu X6100 Transmitter Specifications Frequency range 1.8~2.0 MHz 3.5~3.9 MHz 5.3515~5.3665 MHz 7.0~7.2 MHz 10.1~10.15 MHz 14.0~14.35 MHz 18.068~18.168 MHz 21.0~21.45 MHz 24.89~24.99 MHz 28.0~29.7 MHz 50~54 MHz Output Power, internal battery: 5W Output Power, external power supply: 10W Stray suppression � 60dB Sideband suppression: �50dB SSB Frequency Response: 300-2700Hz (-6dB) FM Modulation Swing; +/- 5kHz Mic Impedance: o,2-10k (600 Ohm typical) Antenna tuner tuning impedance range: 12.5-200 Ohm Antenna tuner initial tuning time: � 10s Antenna tuner memory recall time � 0.1s Xiegu X6100 General Specifications Dimensions: 180 x 86 x 49 mm Weight: x,xx kg Xiegu X6100 In the Box X6100 radio unit complete with antenna tuner and internal rechargeable battery Microphone with backlit remote control keypad Serial cable for PC connection 12 Volt DC power cord English manual Xiegu Service Card Sun, 01 Aug 2021 07:46:20 -0700 Re: No-code styles customization for R1CBU/R2RFE firmware /g/xiegu-x6100/message/6986 <div>Hello!</div> <div> </div> <div>I change the appearance of my firmware for TRX Brass using Python scripts - <a href="https://github.com/strijar/brass_gui/tree/main/rootfs/usr/share/brass/python" target="_blank" rel="nofollow noopener">https://github.com/strijar/brass_gui/tree/main/rootfs/usr/share/brass/python</a></div> <div> </div> <div>73!</div> belousov.oleg@... (Oleg - R1CBU) Wed, 09 Apr 2025 06:35:19 -0700 No-code styles customization for R1CBU/R2RFE firmware /g/xiegu-x6100/message/6985 <div>Inspired by wicknix&#39;s color changes, I came up with the idea of allowing anyone to customize color, styles, palette, etc by just editing (say with notepad) a simple text file in the DATA partition.</div> <div>The file is called &#39;styles_custom.txt&#39;, and it uses a very simple key = value format like this:</div> <div> </div> <pre># test styles customization # Franco Venturi K4VZ # Sun Apr 6 10:00:25 AM EDT 2025 wf_palette = gauss #bg_color = 0x27313a bg_color = 0x56a346 btn_bg_img = images/btn_dark.bin msg_bg_img = images/btn_dark.bin clock_bg_img = images/top_short_dark.bin info_bg_img = images/top_short_dark.bin </pre> <div> </div> <div>The above example just changes the background color to green, but you can see how it works (lines beginning with &#39;#&#39; are just comments and are ignored).</div> <div>This is mostly still a proof of concept, so I just put a dozen or so settings from the &#39;simple&#39; style in it, but the possibilities are endless.</div> <div>For instance you can even customize your waterfall palette by creating an entry called &#39;wf.palette&#39; with a list of 256 values (see the file &#39;styles_custom_palette.txt&#39; for an example, where I just reverted the list of the colors to create a &#39;negative&#39; waterfall palette, just for fun).</div> <div> </div> <div>For those who want to use a more organized way of managing those settings, I also created a simple Python script called &#39;toml2txt.py&#39; that you can use to convert from a file in TOML format (<a href="https://toml.io/en/" target="_blank" rel="nofollow noopener">https://toml.io/en/</a>) to &#39;styles_custom.txt&#39;.</div> <div> </div> <div>All these example styles customizations and the Python script are here: <a href="https://github.com/fventuri/x6100_gui/tree/styles-custom/styles" target="_blank" rel="nofollow noopener">https://github.com/fventuri/x6100_gui/tree/styles-custom/styles</a></div> <div> </div> <div>An SD card image based on the &#39;x6100_gui&#39; version by wicknix plus the styles customizations code I wrote is available here: <a href="https://github.com/fventuri/x6100-buildroot/releases/tag/20250408-styles-custom" target="_blank" rel="nofollow noopener">https://github.com/fventuri/x6100-buildroot/releases/tag/20250408-styles-custom</a></div> <div> </div> <div>Pease let me know what other settings you would like to be able customize or other enhancements you would like to see.</div> <div> </div> <div>Give it a try and have fun!</div> <div> </div> <div>73,</div> <div>Franco K4VZ</div> <div> </div> <div> </div> fventuri@... (Franco Venturi) Wed, 09 Apr 2025 05:54:25 -0700 Re: x6100_r1cbu_v0.20.1_sdcard Image with extended 3rd FAT32 partition to 2GB /g/xiegu-x6100/message/6984 <div>This link found earlier in the thread still works.</div> <div><a href="https://app.box.com/s/xec29t6kc65e7iawgbp65fmfd8xyvwds" target="_blank" rel="nofollow noopener">https://app.box.com/s/xec29t6kc65e7iawgbp65fmfd8xyvwds</a></div> <div> </div> <div>Not sure why you are looking for that old version when 0.29.2 is available. These newer releases already have the larger extended 3rd partition enabled by default.</div> <div> </div> <div>Official: <a href="https://github.com/gdyuldin/x6100_gui/releases" target="_blank" rel="nofollow noopener">https://github.com/gdyuldin/x6100_gui/releases</a></div> <div>3rd party build: <a href="https://github.com/fventuri/x6100-buildroot/releases/tag/20250321" target="_blank" rel="nofollow noopener">https://github.com/fventuri/x6100-buildroot/releases/tag/20250321</a></div> <div>3rd party color modification build: <a href="https://github.com/wicknix/x6100_gui/releases" target="_blank" rel="nofollow noopener">https://github.com/wicknix/x6100_gui/releases</a></div> <div> </div> <div>Cheers</div> wicked5850@... (wicknix) Tue, 08 Apr 2025 15:52:08 -0700 Re: x6100_r1cbu_v0.20.1_sdcard Image with extended 3rd FAT32 partition to 2GB /g/xiegu-x6100/message/6983 <html><head><meta http-equiv="Content-Type"/> </head><body> <p>Hi Markus,</p> <p>unfortunately, it seems that this link does not work anymore...</p> <p>I suggest you use swisstransfer:<br/> <a href="https://www.swisstransfer.com/" class="moz-txt-link-freetext" rel="nofollow noopener" target="_blank">https://www.swisstransfer.com/</a></p> <p>a highly reliable service for sharing large files.</p> <p>Thanks,<br/> </p> <div class="moz-signature">--- OMicalement, Michel de F5UJA</div> <div class="moz-signature"><br/> </div> <div class="moz-cite-prefix">Le 08/04/2024 à 10:47, <a class="moz-txt-link-abbreviated" href="mailto:markus@..." rel="nofollow noopener" target="_blank">markus@...</a> a écrit :<br/> </div> f5uja@... (F5UJA @ Free) Tue, 08 Apr 2025 02:31:03 -0700 Re: Xiegu 6100 - R1CBU Firmware /g/xiegu-x6100/message/6982 <div>I have the same problem, it keeps calling for ever.</div> <div>Love the software.</div> yduboistime@... (Yvon) Sat, 05 Apr 2025 11:34:51 -0700 Re: X6100 has no power in transmission /g/xiegu-x6100/message/6981 <div>I had the same situation with my 6100. I had it for a few months but only used the receiver. Once I started trying to transmit with it I found no output, all bands, all modes. I worked with my dealer (Radioddity) and they wound up sending me a replacement unit under warranty. My replacement works fine, all bands and all modes.</div> <div> </div> <div>Sadly I can offer no information as to the root cause of the problem. Others in this group who had a similar problem stated that they solved it with a firmware update. This solution did not solve my problem. Good luck!</div> gcarella@... (Glenn Carella, N2GOP) Sat, 05 Apr 2025 11:07:30 -0700 Re: X6100 has no power in transmission /g/xiegu-x6100/message/6980 <div>Thanks, no I hadn&#39;t tried... but both in ON and OFF the same problem happens as before.<br/>73 Mauro</div> hb9fbg@... (HB9FBG) Sat, 05 Apr 2025 07:08:18 -0700 Re: Xiegu 6100 - R1CBU Firmware /g/xiegu-x6100/message/6979 <p dir="ltr">Hi. I was busy by porting this firmware to X6200 (almost finished) and implementing a compressor within X6100 BASE firmware (unsuccessful yet). I hope I&#39;ll finish these tasks and return to the X6100 GUI app in a few weeks. </p> <br/><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">сб, 5 апр. 2025 г., 11:57 GW4DVB via <a href="http://groups.io" rel="nofollow noopener" target="_blank">groups.io</a> &lt;brian=<a href="mailto:[email protected]" rel="nofollow noopener" target="_blank">[email protected]</a>&gt;:<br/></div></div> g.dyuldin@... (Georgy Dyuldin) Sat, 05 Apr 2025 06:14:47 -0700 Re: X6100 heat and voltage /g/xiegu-x6100/message/6978 <div>K8SAS,</div> <div>Nice find - ordered and set it up with powerpole input and a dc plug output for the X6100. So far working great. Thanks.</div> W8ISM@... (W8ISM) Sat, 05 Apr 2025 05:22:08 -0700 Xiegu 6100 - R1CBU Firmware /g/xiegu-x6100/message/6977 <div>It&#39;s been mentioned before. Can you look at introducing a time out on failed calls ?<br/><br/>Sometimes my Xiegu replies to a stations call but does not necessarily finish the contact - as a resut it sits there for hours sending the same info back to the station who may have gone off line on faded never to return.<br/><br/>The other thing worth looking at is adding the WSPR mode.<br/><br/>Thanks de GW4DVB</div> brian@... (GW4DVB) Sat, 05 Apr 2025 01:57:25 -0700 Re: X6100 has no power in transmission /g/xiegu-x6100/message/6976 <div>Hi Mauro,</div> <div>you don’t tell us how was your Charger option on or off during your tests. <br/>Maybe that could influence your issue. <br/>73 Ben </div> on5bgo@... (Benjamin ON5BGO) Sat, 05 Apr 2025 00:23:47 -0700 X6100 has no power in transmission /g/xiegu-x6100/message/6975 <div>Hi, <br/>it happens to me that the X6100 gives a very short &#34;hit&#34; of transmission and then does not emit anything. <br/>I specify, I give a call in CW (I use mostly CW but in SSB it is the same thing). <br/>I see that it gives a peak of power and then the power goes to zero. I put another radio in listening and I see that some power comes out but it must be very little (I do not have a power meter that reads such low powers) but tone and modulation work. The reception works well as always.<br/>I tried to do factory resets, install recent and older versions, I tried with R1CBU. I tried with internal battery, external, 13.6V of the Yaesu power supply but I did not find anyone who wants to see what it has. I also tried with ATU ON and OFF. I scanned with APP SWR and the scan works (the YAESU hears the BEEPS) but the scale is flat at 1:1. It is true that X6100 does not have huge costs but not having a repairman is embarrassing and unpleasant.<br/>Does anyone have suggestions that I have not tried?<br/>Thanks for any support or ideas.<br/>Mauro HB9FBG</div> hb9fbg@... (HB9FBG) Fri, 04 Apr 2025 12:59:14 -0700 Re: X6100 with FT8CN Bluetooth connection /g/xiegu-x6100/message/6974 <div>Why bother?  Just use R1CBU version with built in FT8.</div> n2job@... Thu, 03 Apr 2025 07:48:57 -0700 Re: X6100 with FT8CN Bluetooth connection /g/xiegu-x6100/message/6973 <div>Hi Brian. </div><div><br/></div><div>So far it’s impossible using internal Bluetooth. I’ve successfully connected mine using USB cable instead</div><div><br/></div><div>73 de SP9HGN</div><div><br/><div class="gmail_quote"><div dir="ltr" class="gmail_attr">W dniu czw., 3 kwi 2025 o 16:49 Brian K0HBL via <a href="http://groups.io" rel="nofollow noopener" target="_blank">groups.io</a> &lt;blhar15=<a href="mailto:[email protected]" rel="nofollow noopener" target="_blank">[email protected]</a>&gt; napisał(a):<br/></div></div></div> sp9hgn@... (Jarek SP9HGN) Thu, 03 Apr 2025 07:07:47 -0700 X6100 with FT8CN Bluetooth connection /g/xiegu-x6100/message/6972 <div>Has anyone had success connecting your X6100 to your Android device via bluetooth in the FT8CN app?  I am able to connect the radio to my device via bluetooth successfully, but not getting any data back from the radio.  I believe I have all the setting correct.</div> <div> </div> <div>Thanks</div> blhar15@... (Brian K0HBL) Thu, 03 Apr 2025 06:49:38 -0700 Re: X6100 heat and voltage /g/xiegu-x6100/message/6971 <html><head><meta http-equiv="Content-Type"/><meta name="Generator"/></head><body lang="EN-US"><div class="WordSection1"><p class="MsoNormal">Yvon, how do you like the Hermes Lite 2, and how well does the MicroPA50+ work with it?  I sometimes use a MicroPA50 (no plus) in the field and love it.  I did the resistor mod to increase the SWR alarm point.  I’m thinking of getting a Hermes for the shack but wondering about amplifying and CW performance (latency).</p><p class="MsoNormal"> </p><p class="MsoNormal">Thanks, Tony KE1TG</p><p class="MsoNormal"> </p><div style="border: none; border-top: solid #E1E1E1 1.0pt"><p class="MsoNormal"></p></div></div> twebster@... (Anthony Webster) Sun, 30 Mar 2025 13:21:50 -0700 Re: X6100 heat and voltage /g/xiegu-x6100/message/6970 <div>I use a 12ah battery connected to the X6100. It only takes 9 VDC to acquire 10 watts out. So I use this;</div> <div><a href="https://www.amazon.com/dp/B0CPQ6R12X?ref_=icdp_ba_mweb_mb_pd_bap_m_grid_rp_0_13_gf&amp;clientRefMarker=pd_bap_m_grid_rp_0_13_gf&amp;heartsTeamIdentifier=buyagain&amp;psc=1&amp;heartDisabled=false" target="_blank" rel="nofollow noopener">https://www.amazon.com/dp/B0CPQ6R12X?ref_=icdp_ba_mweb_mb_pd_bap_m_grid_rp_0_13_gf&amp;clientRefMarker=pd_bap_m_grid_rp_0_13_gf&amp;heartsTeamIdentifier=buyagain&amp;psc=1&amp;heartDisabled=false</a></div> <div> </div> <div>Works great, stays cool, I get 10 watts and the 12 ah lasts longer.</div> <div>Just a tip to share with everyone.</div> <div>72 QRP er.</div> k8sas73@... (K8SAS) Sun, 30 Mar 2025 12:15:31 -0700 Re: X6100 heat and voltage /g/xiegu-x6100/message/6969 <div>in the shack I am using a Powerwerx for my Hermes Lite 2 with a MicroPa50+ and a SamlexPower SCP-1235M for all my</div> <div>other QRP radios. The Samlex was factory set to 13.9 volts, now  I did adjust it to 12 volts.</div> <div>Thanks for the help.</div> <div> </div> <div> </div> yduboistime@... (Yvon) Sun, 30 Mar 2025 11:50:01 -0700 Re: X6100 heat and voltage /g/xiegu-x6100/message/6968 <div id="__MailbirdStyleContent" style="font-family: Verdana; color: #1a1a1a; text-align: left" dir="ltr"> Thank you, I did order one.<br/></div> yduboistime@... (Yvon) Sun, 30 Mar 2025 10:51:33 -0700 Re: x6100 Com ports not seen on my PCs. /g/xiegu-x6100/message/6967 <div>Thanks, I did order one. Should be here tomorrow.</div> yduboistime@... (Yvon) Sun, 30 Mar 2025 10:50:38 -0700