¿ªÔÆÌåÓý

Date

Re: sBITX 32bit and 64bit Fork Available #sBitx #sBITX_v3

 

Forgot to share the link..

?


sBITX 32bit and 64bit Fork Available #sBitx #sBITX_v3

 

Hello.

I've made some changes to my build for sBitx with improvements contributed by myself and others. The repository can now be used on both the default, 32bit and 64bit versions of the sBitx transceiver.

Notable changes or improvements:
  • telnet fix
  • time zone RTC fix
  • macro button display fix
  • removal of non-working modes
  • FT8library compatible with 32 bit and 64 bit
  • update script changes

More improvements will be made as they are discovered.



-JJ


Re: Observations in sBitx v3

 

¿ªÔÆÌåÓý

Hi Gyula ,?
Thank you for your response , i will check these.?
It would hep if you can share a pic of how you have done the Fan arrangement.

Cheers
Divakar


From:[email protected] <[email protected]> on behalf of HA3HZ <gyula@...>
Sent:?Wednesday, March 27, 2024 7:17 PM
To:[email protected] <[email protected]>
Subject:?Re: [BITX20] Observations in sBitx v3
?
Divakar,
The solution lies in the details. There is a solution for this topic, but it is not highlighted.
Therefore, it is only solved in the 64-bit version. see here. Message #110023.

The output power is affected by several factors: good heat dissipation from the heatsink must be solved.
I use an external fan. It is necessary to check to what extent the values of the scale can be modified in the 'hardware settings ini'. It also depends on your device.
The structure must be mechanically stable (fastening of screws).
In other words, if the hardware is fine, you can expect the software to work well.

The psk reporter is integrated into the sBITX toolbox of W9JES, see if it is suitable for you.

SWR 1. Only this and nothing else on the display?
Then you also have to look at the components in the circuit.

Noisy band. I use a closed loop antenna, it doesn't show up for me.
There are solutions, the RPi's power supply circuit was reinstalled as a closed box.
I have the original, but maybe this is the solution for you.

Wait for others' comments.
--
Gyula HA3HZ


Re: Observations in sBitx v3

 

¿ªÔÆÌåÓý

Thank you? Jeff!! I will try these out!! yes i have recently installed toolbox.

Cheers
Divakar


From: [email protected] <[email protected]> on behalf of AE9J <merrow.jeff@...>
Sent: Thursday, March 28, 2024 4:43 AM
To: [email protected] <[email protected]>
Subject: Re: [BITX20] Observations in sBitx v3
?
For question number one.? If your time is right to the minute but you are stuck in the wrong time zone.

From the Linux prompt:
cd /home/pi/sBITX-toolbox/scripts
./sbitx_fix.sh
And then answer y to the first question and then reboot.
shutdown now -r


Also have you installed the Toolbox yet?



It will help with the Time Sync.? But, you'll have to do the other thing if you're having time zone issue of being stuck in the Arizona time zone.

For question number 2 have you tried sliding your volume slider up during transmit? Does the power go up to something reasonable?? Do you have to move the volume up every time you transmit?



If that is the case, like it was for sBitx V3 I had to overwrite my?default_hw_settings.ini.

Jeff
AE9J
??



Re: sBitx v3

 

On the sBitX screen by default it runs as an app, not in the browser.?

Also, depending on where you click, it might need a double click...and then wait a few seconds.
?

On Wed, Mar 27, 2024 at 7:17?PM Carl Bohman <carlbohman@...> wrote:
Hi,

I received the sBitx today. Startup boots into the pi i os system. I click on the application and the browser does?not open. ? What should I do?

73,

Carl

Get


sBitx v3

 

¿ªÔÆÌåÓý

Hi,

I received the sBitx today. Startup boots into the pi i os system. I click on the application and the browser does?not open. ? What should I do?

73,

Carl

Get


Re: rs232 ptt rts (like /dev/ttyUSB0) interface support #sBitx

 


I'm not a programmer, I wrote this so can someone correct the mistakes?


-------------------------------------------------------------------------------------------------------------------------
diff --git a/sbitx.c b/sbitx.c.new
index 36fac58..f05cecf 100644
--- a/sbitx.c
+++ b/sbitx.c.new
@@ -10,6 +10,7 @@
?#include <wiringSerial.h>
?#include <linux/types.h>
?#include <linux/limits.h>
+#include <sys/ioctl.h>
?#include <stdint.h>
?#include <time.h>
?#include <signal.h>
@@ -68,6 +69,8 @@ fftw_complex *fft_m;????????????????? // holds previous samples for overlap and discard convolu
?fftw_plan plan_fwd, plan_tx;
?int bfo_freq = 40035000;
?int freq_hdr = -1;
+int fd;
+int RTS_flag = TIOCM_RTS;
?
?static double volume?? = 100.0;
?static int tx_drive = 40;
@@ -1187,6 +1190,8 @@ void tr_switch_v2(int tx_on){
??????????????????????? mute_count = 20;
??????????????????????? tx_process_restart = 1;
??????????????????????? digitalWrite(TX_LINE, HIGH);
+?????????????????????? fd = open("/dev/ttyUSB_PTT",O_RDWR | O_NOCTTY );
+?????????????????????? ioctl(fd, TIOCMBIS, &RTS_flag);
?????? delay(20);
??????????????????????? set_tx_power_levels();
??????????????????????? in_tx = 1;
@@ -1212,6 +1217,8 @@ void tr_switch_v2(int tx_on){
??????????????????????? delay(10);
??????????????????????? //power down the PA chain to null any gain
??????????????????????? digitalWrite(TX_LINE, LOW);
+?????????????????????? ioctl(fd, TIOCMBIC, &RTS_flag);
+?????????????????????? close(fd);
??????????????????????? delay(5);
??????????????????????? //audio codec is back on
??????????????????????? sound_mixer(audio_card, "Master", rx_vol)
---------------------------------------------------------------------------------------------------------------------------------


Re: Observations in sBitx v3

 

For question number one.? If your time is right to the minute but you are stuck in the wrong time zone.

From the Linux prompt:
cd /home/pi/sBITX-toolbox/scripts
./sbitx_fix.sh
And then answer y to the first question and then reboot.
shutdown now -r


Also have you installed the Toolbox yet?



It will help with the Time Sync.? But, you'll have to do the other thing if you're having time zone issue of being stuck in the Arizona time zone.

For question number 2 have you tried sliding your volume slider up during transmit? Does the power go up to something reasonable?? Do you have to move the volume up every time you transmit?



If that is the case, like it was for sBitx V3 I had to overwrite my?default_hw_settings.ini.

Jeff
AE9J
??



Re: sBitx printed case speaker source.

 

¿ªÔÆÌåÓý

You'd want to double check the locations of the holes and overall dimensions, but it looks like this one might do the job:


From: [email protected] <[email protected]> on behalf of barry halterman <kthreebo@...>
Sent: Wednesday, March 27, 2024 10:37 AM
To: [email protected] <[email protected]>
Subject: Re: [BITX20] sBitx printed case speaker source.
?

Thanks Mark.

I did some searching and found Digikey has similar, 2watt, 8 ohm 70mm x 30 mm for around $5. PN 668-AS07008MC-R-ND

eBay has them like you said, but shipping from china and the long wait time¡­ Digikey is far faster for the same shipping $$.

73

?

?

Sent from for Windows

?

From: Mark Hatch
Sent: Wednesday, March 27, 2024 11:46 AM
To: [email protected]
Subject: Re: [BITX20] sBitx printed case speaker source.

?

Here it is:

?

currently maked as not available. But remember seeing many many on AliExpress and maybe some frome other Amazon sellers too

73
mark
--
AJ6CU/7
KD8CEC 2.0, Nextion Screens,? and open source uBITX Raduino boards for Arduino IOT, BLE, RP2040, Teensy 4.0, and Raspberry Pi Pico
https://github.com/aj6cu

?


Re: sBitx printed case speaker source.

 

¿ªÔÆÌåÓý

Thanks Mark.

I did some searching and found Digikey has similar, 2watt, 8 ohm 70mm x 30 mm for around $5. PN 668-AS07008MC-R-ND

eBay has them like you said, but shipping from china and the long wait time¡­ Digikey is far faster for the same shipping $$.

73

?

?

Sent from for Windows

?

From: Mark Hatch
Sent: Wednesday, March 27, 2024 11:46 AM
To: [email protected]
Subject: Re: [BITX20] sBitx printed case speaker source.

?

Here it is:

?

currently maked as not available. But remember seeing many many on AliExpress and maybe some frome other Amazon sellers too

73
mark
--
AJ6CU/7
KD8CEC 2.0, Nextion Screens,? and open source uBITX Raduino boards for Arduino IOT, BLE, RP2040, Teensy 4.0, and Raspberry Pi Pico
https://github.com/aj6cu

?


Re: sBITX Toolbox - A great companion for the sBitx transceiver is now available for public release #file-notice #sBitx #sbitx_v2 #sBITX_v3 #wiki-notice

 

On Wed, Mar 27, 2024 at 10:43 AM, HA3HZ wrote:
Simply download the .zip from the drexjj/sbitx 64-bit site. The TZ fix is already built in here.
The currently available 64-bit sbitx_gtk.c includes additional cw macro fixes. After unpacking, copy the sbitx_gtk.c file to the sbitx folder, then build it with the ./build sbitx command.?If you haven't done this yet, make a copy of the sbitx folder first. There are many things you can do with File Manager.
--
Gyula HA3HZ
Thank you for assisting, Gyula!


Re: uBitx V6 on the air - plus a question

 

Thanks much
On Mar 27, 2024, 11:38 AM -0400, Evan Hand <elhandjr@...>, wrote:

Hello N4GW,

There is no way to return to a previous setting with the stock software.? The other characteristic is that it always starts with a "safe" value for the calibration, NOT the last saved value.? With the stock software, you must write down the value before saving it to the radio.? The way that I recalibrate the frequency is to follow this video:


The BFO Tuning Aid no longer works.? You will need a PC or other audio spectrum analyzer for BFO tuning.? Here are two for PC:



In the US, WWV can be used; however, the 500/600 hertz tones confuse the zero-beat process.? I use a signal generator that I trust to be accurate.

Note that there are three steps or phases in the video:
1 - adjust the BFO so you can hear the low-frequency tones
2 - calibrate the master clock
3 - Readjust the BFO for best speech reception and opposite sideband rejection.

I hope this helps.
73
Evan
AC9TU


Re: sBITX V3 manual

 

Great Job Petr, thank you. I found your manual very helpful? but no schematics, where did you find the schematics? I followed Fahran's link and there find only the software.


Re: sBitx printed case speaker source.

 

Here it is:

?
currently maked as not available. But remember seeing many many on AliExpress and maybe some frome other Amazon sellers too

73
mark
--
AJ6CU/7
KD8CEC 2.0, Nextion Screens,? and open source uBITX Raduino boards for Arduino IOT, BLE, RP2040, Teensy 4.0, and Raspberry Pi Pico
https://github.com/aj6cu


Re: sBITX Toolbox - A great companion for the sBitx transceiver is now available for public release #file-notice #sBitx #sbitx_v2 #sBITX_v3 #wiki-notice

 

Ioan,
Simply download the .zip from the drexjj/sbitx 64-bit site. The TZ fix is already built in here.
The currently available 64-bit sbitx_gtk.c includes additional cw macro fixes. After unpacking, copy the sbitx_gtk.c file to the sbitx folder, then build it with the ./build sbitx command.?If you haven't done this yet, make a copy of the sbitx folder first. There are many things you can do with File Manager.
--
Gyula HA3HZ


Re: uBitx V6 on the air - plus a question

 

Hello N4GW,

There is no way to return to a previous setting with the stock software.? The other characteristic is that it always starts with a "safe" value for the calibration, NOT the last saved value.? With the stock software, you must write down the value before saving it to the radio.? The way that I recalibrate the frequency is to follow this video:


The BFO Tuning Aid no longer works.? You will need a PC or other audio spectrum analyzer for BFO tuning.? Here are two for PC:



In the US, WWV can be used; however, the 500/600 hertz tones confuse the zero-beat process.? I use a signal generator that I trust to be accurate.

Note that there are three steps or phases in the video:
1 - adjust the BFO so you can hear the low-frequency tones
2 - calibrate the master clock
3 - Readjust the BFO for best speech reception and opposite sideband rejection.

I hope this helps.
73
Evan
AC9TU


Re: Impedance calculation rule crystal filter

 

When measuring the inductance of your coil with the nanoVNA,
do so across a range of frequencies near 45mhz, the frequency of use.
I'd suggest measuring inductance across 35 to 55 mhz.


On Wed, Mar 27, 2024 at 07:56 AM, Jerry Gaffke wrote:
It would be wise to check the inductance of your torroid using your nanoVNA.


Re: Impedance calculation rule crystal filter

 

Gerard,

It would be wise to check the inductance of your torroid using your nanoVNA.
Could well be that there is enough capacitance between windings to give poor results.
Surface mount inductors might work better.

If you don't have a datasheet for the 45mhz module, you will have to just try different caps and inductors
to see what's best, measuring the response with your nanoVNA.??
Figuring out how to do the calculations is a hobby in itself, but for a properly working filter
it all comes down to proper testing.

Jerry, KE7ER


On Wed, Mar 27, 2024 at 07:13 AM, Gerard wrote:
In fact if I understood correctly it's give in the theory : 530nH (so 12 turns give 560nH in the tore calculator), and total of 16pF--> remove 3pf of the crystal filter--> so 13pF for capacitor


uBitx V6 on the air - plus a question

 

Pleased with the radio.? Easy to assemble and sounds really great.??



Question:? I noticed I was about 60 hz off.? Went into the menu and Freq calibration and now I am over 3 Khz off.? Is there a master reset to get me back to original settings.? If I can start over I think I can fix it


Re: sBITX Toolbox - A great companion for the sBitx transceiver is now available for public release #file-notice #sBitx #sbitx_v2 #sBITX_v3 #wiki-notice

 

THANKS it worked ,my only problem remained the clock at the application I Please as I do to adjust the time I entered the file sbitx_gtk.c I made the changes to lines 2300 in sbitx_gtk,c is the function,
?
time_t time_sbitx(){
? ? ? if (time_delta)
? ? ? ? ? ?return (millis()/1000l) + time_delta;
? ? ? ?else
? ? ? ? ? ? ? ? ? ? ? ? return time(NULL); But nothing has changed how I can solve thanks!