开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Re: #zbitx I would really like a formal way to shut down the software gracefully #zbitx

 

In theory the action could be done as well as a button in say menu option?


On Wed, Apr 2, 2025, 10:37?PM Ken N2VIP via <ken=[email protected]> wrote:
Perhaps something like this?
?
?
Now, if someone clever could incorporate the 6 second hold-down of the encoder switch to initiate a proper shutdown as described here...
?
Ken, N2VIP


Power zero on 10m / Drive number

 

So, I'd been watching another thread for resolution, but it may not be the same thing.
Questions up front.
1. Any reason why 10m is 0W??
2. See my drive? it's 96, and I don't know why I can't get it to 100. When using the wheel, it won't go any higher, though it certainly goes lower.?
These lead me to believe both are software configuration related.?
?
The problem:
I initially had the issue with FT8 locking up the zBitx. Updating the both the Zero and Pico software resolved that.
I'm at 1.6 and 3.051 now.
Running sBitx on the external monitor resulted in 0W out.?
?
However, I'd still get 0 watts out when transmitting FT8 on 10m.
?
However, I remembered I get less output on my sBitx at 10m, so I setup a 20m vertical and I got power out. I haven't had time to check 12/15/17m. Could there be a problem with the calibration files that I absolutely did not backup when I did the update?
?
Any guidance would be appreciated!
Matt


Re: #zbitx I would really like a formal way to shut down the software gracefully #zbitx

 

Perhaps something like this?
?
?
Now, if someone clever could incorporate the 6 second hold-down of the encoder switch to initiate a proper shutdown as described here...
?
Ken, N2VIP


Re: Tariffs and zBitx Shipments #zbitx

 

I would agree with Ken.?
However, we are assessing the impact of this on HF Signals (which is a Delaware company that files its taxes in the USA) the impact should be minimal. We will wait and watch.If any of the buyers face additional tariffs, write to us at sales@... so we can see how we can do an impact analysis.
- f?

On Thu, Apr 3, 2025 at 7:56?AM Ken N2VIP via <ken=[email protected]> wrote:
Please, let's keep politics off this group.
?
There are plenty of places to discuss current events, politics, etc - as a world-wide community of of over 7,000 members, the likelihood of offending others is quite high.
?
Just my 2 cents.
?
Ken, N2VIP


Re: Zbitx power cord connector

 

My plug failed on like the third start. I ordered this and they transmit power fine (one to replace the failed plug and one for the power supply), but they’re slightly longer. A very small o-ring would take up the space if that’s a concern.?


Re: Tariffs and zBitx Shipments #zbitx

 

Please, let's keep politics off this group.
?
There are plenty of places to discuss current events, politics, etc - as a world-wide community of of over 7,000 members, the likelihood of offending others is quite high.
?
Just my 2 cents.
?
Ken, N2VIP


Re: #zbitx I would really like a formal way to shut down the software gracefully #zbitx

 

开云体育

I would have to agree with you on this point.

Gerry

On 2025-04-03 02:03, James Kvochick wrote:

I get a little nervous pulling power on a running Linux computer. ?Probably 9 times out of 10, no issues, but the ONE time....well, a corrupt SD card doesn't sound like fun.
?
The Raspberry Pi Pico running the display can probably deal with things well, my concern is the other CPU. ?I would feel tons better if there ws a formal shutdown item to click on....any thoughts?
?
Cheers
Jim K8JK
?


Re: Tariffs and zBitx Shipments #zbitx

 

开云体育

Who elected that addled egghead responsible for your country's problems?

Gerry

On 2025-04-03 02:20, Gill W4BXA via groups.io wrote:

I don’t think the exception applies here, but I could be wrong. The price of virtually all ham equipment just took a big jump.?


Re: Tariffs and zBitx Shipments #zbitx

 

I don’t think the exception applies here, but I could be wrong. The price of virtually all ham equipment just took a big jump.?


Re: CW on zbitx

 

Ron, I would like you to review the code:
1.?
Here, we setup the ISR (interrupt service routine) to call a function called key_isr whenever the state of the paddle chages (press, release).
2. The key_isr () reads the status of the the two paddles (DASH and PTT) and stores them in global variables ptt_state and dash_state.
3. the cw sending loop has to generate 96,000 samples a second. And it cannot spend?time reading the gpio pins to see if the any new symbol (dot/dash/space) has been generated by the user. Instead, it just reads these two variables. This is done by the routine key_poll().
.4 Read key_poll (). You will note that it executes very quickly. To know what type of key we are using, it doesn't even to a string compare of the CW_INPUT settings, instead it just samples the 6th letter with is different for all the three cases (Straight, Iambic and Iambic-B).
Let me know what you think of the?implementation and if it can be improved.
- f



On Thu, Apr 3, 2025 at 6:57?AM Ron, N6YWU via <ron.nicholson=[email protected]> wrote:
Have you considered using interrupts to handle the GPIO pins connected to the keying inputs?? Interrupts might reduce or eliminate the possibility of missing the first dot before a dash. ?
?
A priority interrupt handler would need to be written with good real-time coding practices (bounded time algorithm, no locks, no API calls that could involve memory management, etc.). ? But this should be possible.? Then post the key inputs with time stamps to be handled by the priority keying sidetone process, which perhaps will run only a few milliseconds later.? The time stamps on the interrupt data would prevent the dash from being handled before any dot, if that was the key closure sequence, and solve at least one issue with fast iambic keying that polling with a slow CPU on a loaded system might never be able to completely solve.
?
73, Ron, N6YWU


Re: #zbitx I would really like a formal way to shut down the software gracefully #zbitx

 

Agree.? With you being a Linux user.??
I think Farhan mentioned he wanted to avoid giving elevated access to do the shutdown. When at home I ssh into it to issue the shutdown -h now command?

On Wed, Apr 2, 2025, 10:03?PM James Kvochick via <kvo=[email protected]> wrote:
I get a little nervous pulling power on a running Linux computer.? Probably 9 times out of 10, no issues, but the ONE time....well, a corrupt SD card doesn't sound like fun.
?
The Raspberry Pi Pico running the display can probably deal with things well, my concern is the other CPU.? I would feel tons better if there ws a formal shutdown item to click on....any thoughts?
?
Cheers
Jim K8JK
?


#zbitx I would really like a formal way to shut down the software gracefully #zbitx

 

I get a little nervous pulling power on a running Linux computer. ?Probably 9 times out of 10, no issues, but the ONE time....well, a corrupt SD card doesn't sound like fun.
?
The Raspberry Pi Pico running the display can probably deal with things well, my concern is the other CPU. ?I would feel tons better if there ws a formal shutdown item to click on....any thoughts?
?
Cheers
Jim K8JK
?


Re: Zbitx power cord connector

 

开云体育

I think it is 2.1x5.5

Gerry

On 2025-04-03 01:25, Mike-N4GW via groups.io wrote:

Any one know the size of the power connector. ?I want to order some


Re: CW on zbitx

 

Have you considered using interrupts to handle the GPIO pins connected to the keying inputs? ?Interrupts might reduce or eliminate the possibility of missing the first dot before a dash. ?
?
A priority interrupt handler would need to be written with good real-time coding practices (bounded time algorithm, no locks, no API calls that could involve memory management, etc.). ? But this should be possible. ?Then post the key inputs with time stamps to be handled by the priority keying sidetone process, which perhaps will run only a few milliseconds later. ?The time stamps on the interrupt data would prevent the dash from being handled before any dot, if that was the key closure sequence, and solve at least one issue with fast iambic keying that polling with a slow CPU on a loaded system might never be able to completely solve.
?
73, Ron, N6YWU


Zbitx power cord connector

 

Any one know the size of the power connector. ?I want to order some


Re: FT8 heat

 

开云体育

Placed an order

Gerry

On 2025-04-02 17:20, Ed T. via groups.io wrote:

I use these to help dissipate the excess heat. Slap them on back and let them do their job.?
Also use on Xeigu 6200.
?
?
?


Re: Tariffs and zBitx Shipments #zbitx

 

Yeah, but we'll be "great" again, as we pay the increase as buyers.? Sorry for the troubles in this regard.?


Re: Tariffs and zBitx Shipments #zbitx

 

I had been paying a 10% tariff on every part from China.? We did not raise our prices, but we cannot absorb a 54% tariff.? We will have to look at what to do.? ?It will have an effect.
?
?


Re: Tariffs and zBitx Shipments #zbitx

 

I was just wondering that myself.? ?Hope it doesn't affect the new sBitx v4 pricing.
?


#zbitx Getting started and more cheat sheet #zbitx

 

All,
?
I have been working on a summary document for my own reference. ?My radio has not shipped yet so I get to read with a little bit of envy!
?
I have a hard time digging through all the forum entries so my google doc is born. ?As things settle out I will also add more info to the Wiki here.
?
73 KE9A
?