Keyboard Shortcuts
Likes
- BITX20
- Messages
Search
Re: sBitx update to 3.051?
开云体育Steve, ? Follow what Gyula says. He got me started and I am enjoying my sBitx. ? Dean ? From: [email protected] <[email protected]>
On Behalf Of Stephen Clark via groups.io
Sent: Sunday, April 6, 2025 7:20 AM To: [email protected] Subject: Re: [BITX20] sBitx update to 3.051? ? Thanks for your response, I’ll read more about the upgrade to 64-bit OS.? Steve
|
Re: Homebrew satellite control system that can run on sBitx
toggle quoted message
Show quoted text
On Apr 6, 2025, at 04:40, Gordon Gibby KX4Z via groups.io <docvacuumtubes@...> wrote:
|
Re: sBitx update to 3.051?
toggle quoted message
Show quoted text
On Apr 5, 2025, at 10:12?AM, HA3HZ <gyula@...> wrote:
|
Re: CW on zbitx
Ron, I think you are going down the same path I did on the 64 bit baseline last year. In sbitx_gtk.c we made the tweak like yours which leaves Farhans code and the polling rate undisturbed for all current and future modes, except for new special treatment (more frequent polling) for MODE_CW and CWR.
toggle quoted message
Show quoted text
I like Gordon's comment about the Shannon limit, but there is no limit on how much people will complain when you clip off one of their dits or dahs! I originally started to go through all the CW related stuff between modem_poll and key_poll to see if it should be streamlined but Farhans original code seems pretty good. if (ticks % 20 == 0) modem_poll(mode_id(get_field("r1:mode")->value)); else { // calling modem_poll every 20 ticks isn't enough to keep up with a fast // straight key, so now we go on _every_ tick in MODE_CW or MODE_CWR if ((mode_id(get_field("r1:mode")->value)) == MODE_CW || (mode_id(get_field("r1:mode")->value)) == MODE_CWR) modem_poll(mode_id(get_field("r1:mode")->value)); } and over here in sbitx_gtk if (ticks % 20 == 0 || cw_tx_now ){ modem_poll(mode_id(get_field("r1:mode")->value)); cw_tx_now = 0; } Sat, Apr 5, 2025 at 10:04 PM, Ron Carr wrote:
--
Mike KB2ML |
Re: Homebrew satellite control system that can run on sBitx
The homebrew satellite antenna controller boards arrived and a prototype has been built and I have it now controlling a G Dash 450ADC ?quite nicely from gpredict?
?
unfortunately thesbitx /transverter doesn’t seem to be sensitive enough (without any preamp) , but I think I just heard the beacon from AO – 73 using an older ICOM – 820H?
?
|
Re: zBitx firmware update using Macbook/Raspbian
I thought the instructions said a Windows type pc was required 73 de Nigel Evans Callsign: M0NDE QTH: Rhyl Locator: IO82 On Sun, 6 Apr 2025 at 08:17, Peter Watkins via <peterjwatkins50=[email protected]> wrote:
|
zBitx firmware update using Macbook/Raspbian
Hi all,
?
I have been trying to update the firmware on the zBitx using a Mac and RPi box but without success. I have 1.04 installed as received.
?
I’ve followed the instructions on YouTube using the recommended approach but no drive is shown at all.
?
No problems with update at the terminal.
?
Any suggestions/recommendations would be welcomed.
?
Tnx and 73 Peter VK3TKK |
Re: Mike Black W9MDB SK
Thanks Ken, N2VIP for keeping an eye on what's going on.
Unfortunately, many people ignore all respect and understanding regarding the deceased amateur.
Unfortunately, this policy comes from the street and spares no one.
I thought about calling the questioner's attention, but who am I to instruct him in order. A 74-year-old old man who knows how much time he has left, because our fate is not only influenced by our actions.
For me, Mike, W9MDB helped a lot at the end of December last year, when I asked in another forum how to eliminate the error message 'Error in SoundInput'. Since then, with his help, I can use the jtdx program on sbitx without restarting.
So my thanks go to Mike, which I did back then in response. ?
--
Gyula HA3HZ |
Re: Tariffs and zBitx Shipments
#zbitx
De minimis is gone.
?
?
"
?
A technical term from a lifetime in uniform rears it's ugly head yet again: BOHICA.
?
On Wed, Apr 2, 2025 at 05:33 PM, Andrew wrote:
|
Re: CW on zbitx
开云体育I recently powered up my zbit.? I had an official Pi keyboard and mouse connected through the supplied OTG adapter before applying power.? The zbit power and drive were both set to zero as I had no antenna connected.? The radio seemed to key OK from the keyboard, according to the sidetone I was hearing. A couple of comments and questions. Why is it necessary to use an HDMI monitor when updating the software? I couldn't see the mouse pointer with the above-mentioned connection. Gerry Sherman On 2025-04-06 00:07, Erik Erkelens -
N2EPE via groups.io wrote:
|
Re: CW on zbitx
I assume you can use extern's with these separate files.?? I suggest to use one.? As an example call the variable
cw_tx_now.? It will need to be defined as extern in one of the files and just declared in the other.
?
Here in modem_cw when leaving the idle state you can add:
?
? ? ? ? ? ? cw_current_symbol = CW_DOT_DELAY;
? ? ? ? } ? ? ? ? else if (symbol_now & CW_WORD_DELAY){ ? ? ? ? ? ? keydown_count = 0; ? ? ? ? ? ? keyup_count = cw_period * 6; ? ? ? ? ? ? cw_current_symbol = CW_DOT_DELAY; ? ? ? ? } ? ? ? ? //else just continue in CW_IDLE ??????? if( keydown_count > 0 ) cw_tx_now = 1;
? ? ? ? break; ?
and over here in sbitx_gtk
?
? ? if (ticks % 20 == 0 || cw_tx_now ){
? ? ? modem_poll(mode_id(get_field("r1:mode")->value)); ????? cw_tx_now = 0; ? ? } |
Re: CW on zbitx
开云体育Eric, thank you very much for performing that test. I read through your code and I think that you are calling modem poll on every tick.That would certainly suggest that your newfound success indicated it needed to be called more frequently. I have a suspicion that it will similarly work pretty well even if you call it every fifth tick would you be willing to try that? That would be four times faster than it is currently being called and I think that would allow people to get to 30 words per minute, give or take. I’m just curious because I want to see just where the effective “ Shannon limit “ is? reached for human perception. ?? Again, thank you very much for trying that test. I don’t have the radio so I can’t make the test. ?I think somebody else explained it very well. That Ashhar was now reading the paddles extremely rapidly, but not acting on it rapidly. You apparently fixed the latter, ?with the fix we thought would work Difficult to dictate on an iPhone….. Gordon? On Apr 5, 2025, at 20:07, Erik Erkelens - N2EPE via groups.io <erik.erkelens@...> wrote:
|
Re: CW on zbitx
I think Gordon KX4Z is spot on, the timing of items in the ui_tick() loop need adjusting.
?
I slowed down a few things, and made polling the key more frequent, and now I was able to send at 30WPM (not really - but I'm confident any mistakes were mine, and not the zbitx's).
?
Ron Carr's fix for iambic B is also essential to make that work correctly.
?
My changes are in my , and worked for the very few things I tried, but well may have broken others.
?
I am very excited about this radio and having the ability to see and change how it's working!
?
Erik - n2epe
? |
zBitx SSB contact
I had a 20M SSB contact with NC from Chicago (640 miles)- got a 1/1 signal report but was able to exchange call signs and name. I think I have a slight amount of desense so probably need to work on that a bit but it definitely worked on SSB. I've had a few FT8 contact also.
?
John
KC9OJV |
Re: Mike Black W9MDB SK
Hello Rick,
?
There are two versions of the Nano's boot loader: one for original miniUSB-connected devices and the other for USB-C devices. This is a generalization, so there can be exceptions.
?
The secret is to change the processor in the tools menu:
?
?
If one does not work, try the other.? All of the USB-C Nanos use the ATmega328 processor.
?
The other potential issue is the size of the bootloader file.? If the KD8CEC program will not fit, some options are selected in the ubitx.h file:
?
//==============================================================================
// User Select feather list
//==============================================================================
/*
//Enable all features
#define FN_BAND ? ? ? ? 1 //592
#define FN_VFO_TOGGLE ? 1 //78
#define FN_MODE ? ? ? ? 1 //20
#define FN_RIT ? ? ? ? ?1 //58
#define FN_SPLIT ? ? ? ?1 //62
#define FN_IFSHIFT ? ? ?1 //238
#define FN_ATT ? ? ? ? ?1 //128
#define FN_CW_SPEED ? ? 1 //152
#define FN_VFOTOMEM ? ? 1 //254
#define FN_MEMTOVFO ? ? 1 //188
#define FN_MEMORYKEYER ?1 //156
#define FN_WSPR ? ? ? ? 1 //1044
#define FN_SDRMODE ? ? ?1 //68
#define FN_CALIBRATION ?1 //666
#define FN_CARRIER ? ? ?1 //382
#define FN_CWCARRIER ? ?1 //346
#define FN_CWTONE ? ? ? 1 //148
#define FN_CWDELAY ? ? ?1 //98
#define FN_TXCWDELAY ? ?1 //94
#define FN_KEYTYPE ? ? ?1 //168
#define FN_ADCMONITOR ? 1 //516
#define FN_TXONOFF ? ? ?1 //58
*/
?
Not selecting the FN_WSPR frees up the most memory. The display plays a role as well. There are two suggested feature lists:
?
/*
//Recommended Character LCD Developer ?87%
#define FN_BAND ? ? ? ? 1 //592
#define FN_VFO_TOGGLE ? 1 //78
#define FN_MODE ? ? ? ? 1 //20
#define FN_RIT ? ? ? ? ?1 //58
#define FN_SPLIT ? ? ? ?1 //62
#define FN_IFSHIFT ? ? ?1 //238
#define FN_ATT ? ? ? ? ?0 //128
#define FN_CW_SPEED ? ? 0 //152 //using MM
#define FN_VFOTOMEM ? ? 1 //254
#define FN_MEMTOVFO ? ? 1 //188
#define FN_MEMORYKEYER ?1 //156
#define FN_WSPR ? ? ? ? 1 //1044
#define FN_SDRMODE ? ? ?1 //68
#define FN_CALIBRATION ?0 //667 //using MM
#define FN_CARRIER ? ? ?0 //382 //using MM
#define FN_CWCARRIER ? ?0 //346 //using MM
#define FN_CWTONE ? ? ? 0 //148 //using MM
#define FN_CWDELAY ? ? ?0 //98 //using MM
#define FN_TXCWDELAY ? ?0 //94 //using MM
#define FN_KEYTYPE ? ? ?0 //168 //using MM
#define FN_ADCMONITOR ? 0 //516 //using MM
#define FN_TXONOFF ? ? ?1 //58
*/
//Recommended for Nextion, TJC LCD 88%
#define FN_BAND ? ? ? ? 1 //600
#define FN_VFO_TOGGLE ? 1 //90
#define FN_MODE ? ? ? ? 1 //318
#define FN_RIT ? ? ? ? ?1 //62
#define FN_SPLIT ? ? ? ?1 //2
#define FN_IFSHIFT ? ? ?1 //358
#define FN_ATT ? ? ? ? ?1 //250
#define FN_CW_SPEED ? ? 0 //286
#define FN_VFOTOMEM ? ? 0 //276
#define FN_MEMTOVFO ? ? 0 //234
#define FN_MEMORYKEYER ?1 //168
#define FN_WSPR ? ? ? ? 1 //1130
#define FN_SDRMODE ? ? ?1 //70
#define FN_CALIBRATION ?0 //790
#define FN_CARRIER ? ? ?0 //500
#define FN_CWCARRIER ? ?0 //464
#define FN_CWTONE ? ? ? 0 //158
#define FN_CWDELAY ? ? ?0 //108
#define FN_TXCWDELAY ? ?0 //106
#define FN_KEYTYPE ? ? ?0 //294
#define FN_ADCMONITOR ? 0 //526 //not available with Nextion or Serial UI
#define FN_TXONOFF ? ? ?1 //70
//==============================================================================
// End of User Select Mode and Compil options
?
?
Setting define to 0 removes that feature from the program.
?
I hope the above helps.
?
73
Evan
AC9TU
?
?
?
|
Re: Mike Black W9MDB SK
开云体育Is there a reason you didn't start a new thread for your very specific request for technical assistance from Ashar?Farhan may not see your question, since the subject line is about an SK ham... Ken, N2VIP On Apr 5, 2025, at 13:56, Rick Beatty via groups.io <w7rnb47@...> wrote:
|