¿ªÔÆÌåÓý

Date

Re: Windows Serial Port Problem

Gordon Gibby
 

¿ªÔÆÌåÓý

I think it¡¯s FTDI that windows likes.




On Jul 14, 2018, at 17:57, Ralph Mowery <rmowery42@...> wrote:

Sometimes if you are not using a Profilic (probably spelled way wrong) original driver but a 3 rd party driver, you have to delete the driver and install the 3rd party driver.? This seems to happen to many almost? every time win 10 updates.

This may explain it.





On Sat, Jul 14, 2018 at 5:09 PM, Albert Woodhull <n1aw@...> wrote:
A few days ago my Windows 10 installation got updated, without asking me, of course.? I stepped away from the computer for a while and when
I came back updates were being installed.

I think my USB port drivers were changed.? When I try to run the KD8CEC Memory Manager or to upload a newly compiled? ubitx_20 version
I do not see the COM4 port any more. The Windows Device Manger shows an "Unusable Parallel Port (LPT3) where I previously saw a COM4
Serial Port.

Does anyone know what happened or how to undo it?

- Al N1AW





Re: Different Tuning Steps #ubitx

 

Yes, it is KC8CEC 1.08.?? Changing those values does change my step size but the 100000 displays funny while setting it or using it.
--
Lee - N9LO? "I Void Warranties"

?


Re: Different Tuning Steps #ubitx

 

¿ªÔÆÌåÓý

Lee

Are you editing KD8CEC sketch?? If so, this won't achieve what you want.? These values are only the initial values when the programme first runs.? They won't apply once values have been saved in EEPROM.

You can change the step values in UBitx Manager software in Windows (easiest method), or (I think) in the setup menu.

Mike ZL1AXG

On 15/07/18 11:29 AM, Lee wrote:
Is something missing????
--
Lee - N9LO? "I Void Warranties"

?


--
Mike Woods
mhwoods@...


Re: Different Tuning Steps #ubitx

 

Is something missing????
--
Lee - N9LO? "I Void Warranties"

?


Re: Windows Serial Port Problem

 

Sometimes if you are not using a Profilic (probably spelled way wrong) original driver but a 3 rd party driver, you have to delete the driver and install the 3rd party driver.? This seems to happen to many almost? every time win 10 updates.

This may explain it.





On Sat, Jul 14, 2018 at 5:09 PM, Albert Woodhull <n1aw@...> wrote:
A few days ago my Windows 10 installation got updated, without asking me, of course.? I stepped away from the computer for a while and when
I came back updates were being installed.

I think my USB port drivers were changed.? When I try to run the KD8CEC Memory Manager or to upload a newly compiled? ubitx_20 version
I do not see the COM4 port any more. The Windows Device Manger shows an "Unusable Parallel Port (LPT3) where I previously saw a COM4
Serial Port.

Does anyone know what happened or how to undo it?

- Al N1AW





Re: Nextion display cutout and mounting. #ubitx #ubitx-help

Dave Dixon
 

Hello Derek,
???????????????????? I firstly fitted the normal lcd display so the hole was cut for that the 2.4 screen just covers the hole I am mounting mine on the front panel with small standoffs.I am also running a version 3 with KD8CEC 1.07 and have today worked most of Europe on 40 mtrs with my dipole.regards dave g0ayd


On 14 July 2018 at 18:03, derek via Groups.Io <derek.g4vwi@...> wrote:
Hi Dave and others using the Nextion display.

Nice to know all is running well.

However, did you do anything about the 3mm inactive strip along the RHS or did you mount the screen with a slightly smaller cut-out to the screen size? Perhaps you have not bothered about this at all?
I take it you got everything up and running using the supplied display first. I have the 2.8 and 3.2 displays available here.
Any issues with transferring the firmware?
Any tips would be welcome.

Derek G4VWI.



Re: Windows Serial Port Problem

Thomas Martin
 

¿ªÔÆÌåÓý

I am not an expert but try unplugging the device then back in and also check device manager to see-if the device is active

Tom

Tom Martin


On Jul 14, 2018, at 4:09 PM, Albert Woodhull <n1aw@...> wrote:

A few days ago my Windows 10 installation got updated, without asking me, of course.? I stepped away from the computer for a while and when
I came back updates were being installed.

I think my USB port drivers were changed.? When I try to run the KD8CEC Memory Manager or to upload a newly compiled? ubitx_20 version
I do not see the COM4 port any more. The Windows Device Manger shows an "Unusable Parallel Port (LPT3) where I previously saw a COM4
Serial Port.

Does anyone know what happened or how to undo it?

- Al N1AW




Windows Serial Port Problem

 

A few days ago my Windows 10 installation got updated, without asking me, of course.? I stepped away from the computer for a while and when
I came back updates were being installed.

I think my USB port drivers were changed.? When I try to run the KD8CEC Memory Manager or to upload a newly compiled? ubitx_20 version
I do not see the COM4 port any more. The Windows Device Manger shows an "Unusable Parallel Port (LPT3) where I previously saw a COM4
Serial Port.

Does anyone know what happened or how to undo it?

- Al N1AW




Re: Different Tuning Steps #ubitx

Jack Purdum
 

A signed int on a Nano is a 2-byte number. Because the Most Significant Bit (MSB) is the sign bit, you only have 2^15 = 32,767 Anything after that sets the sign bit and appears as a negative number. I would guess that's what happened here, since it only happens on the largest value. Since you are working with frequencies, in Hertz, you should use the unsigned long data type. When you are assigning constant like below, it's good practice to use the data type specifier (in yellow below).

Jack, w8TEE

On Saturday, July 14, 2018, 4:48:17 PM EDT, Lee <mr.olson@...> wrote:


I want different tuning steps.?? I wanted larger steps to, for example, to help moving from one WWV to another.?? Below is what I changed.? When I try to set it to 100000 the display reads -31072 and when I accept it the display now shows 00000 ST? I under stand it will only display 5 digits but I could get by with just an S instead of the ST or take the M from the upper frequency display.?? I am just a barely an Arduino hobbyist and I know there are some Arduino Pros here. ? Does anybody have any ideas??? Thank you for the help.

? //Check Value Range and default Set for new users
? if (findedValidValueCount < 5)
? {
??? //Default Setting
??? arTuneStep[0] = 10UL;
??? arTuneStep[1] = 100UL;
??? arTuneStep[2] = 1000UL;
??? arTuneStep[3] = 10000UL;
??? arTuneStep[4] = 100000UL;
? }
--
Lee - N9LO? "I Void Warranties"

?


Different Tuning Steps #ubitx

 

I want different tuning steps.?? I wanted larger steps to, for example, to help moving from one WWV to another.?? Below is what I changed.? When I try to set it to 100000 the display reads -31072 and when I accept it the display now shows 00000 ST? I under stand it will only display 5 digits but I could get by with just an S instead of the ST or take the M from the upper frequency display.?? I am just a barely an Arduino hobbyist and I know there are some Arduino Pros here. ? Does anybody have any ideas??? Thank you for the help.

? //Check Value Range and default Set for new users
? if (findedValidValueCount < 5)
? {
??? //Default Setting
??? arTuneStep[0] = 10;
??? arTuneStep[1] = 100;
??? arTuneStep[2] = 1000;
??? arTuneStep[3] = 10000;
??? arTuneStep[4] = 100000;
? }
--
Lee - N9LO? "I Void Warranties"

?


Re: Should I calibrate my rig? (CEC firmware) #calibration #ubitx

 

On Wed, Jul 11, 2018 at 08:10 AM, Arvo KD9HLC wrote:
This article mentions using WSPR to get information about your TX actual frequency.? You can use the WSPR website data about your transmissions to find out what the receiving stations think your frequency is.? Could you simply average the receiving stations' frequency reports and use that as the actual frequency?
This seems to have worked.? I did some WSPR transmissions, averaged the error, applied the change to the calibration factor per Ian's direction, and now the WSPR data looks better.? I was off by about 52 Hz on 40 M.


Re: Soft for mBITX transceiver

Nigel G4ZAL
 

Ian (KD8CEC) made it super easy to (re)install the original soft (firmware) for the ubitx.
Follow his instructions and download 'xloader' and the original soft/firmware in his website page and simply 'upload' it into the ubitx.
You will now have the original software, as shipped in your ubitx.



Nigel.


Re: Basic board test: 130ma @ 12.5 volts #ubitx

 

Not stupid.

It's not in the instructions.
Also, the photo clearly shows no Raduino plugged in.
? ??
Seems Farhan wrote that 7 months ago, and this has all since slipped his mind.

There's nothing?that would be damaged if a uBitx main board were powered up
without a Raduino plugged in.??

Looking at the Raduino connector on the uBitx main board schematic near the bottom of this webpage:
? ??
there are signals for??T/R, TXA,TXB,TXC,?CLK0,CLK1,CLK2, CW-KEY, and CW-TONE.


The relay driver at Q15 for T/R won't have any current going into the base,
so that transistor won't be on.? The rig will not be trying to transmit.

Likewise for the LPF band-switching relays at TXA,TXB,TXC.
Though if some of them were on we don't really care.

Perfectly fine that the three clocks are dead, that won't hurt anything.

CW-KEY won't be unbalancing the first mixer because there's no current going in there.
Doesn't really matter anyways because T/R does not have us in transmit mode.

CW-TONE is fine if there's no current going in.?
And would be fine if 5v was applied there anyways.

You might think we could have damage if T/R was somehow injecting current
into Q15, which would power up the transmit amp with inappropriate LPF filters selected by the relays.
However, with all clocks dead, won't have any RF energy going out anyway.
And if there was RF, the IRF510's powered at 12v would be fine (at least for awhile) with the high SWR.

I'd recommend you follow the WireUp instructions as originally written up.
Follow the example in the photo, and do not plug in the Raduino.
I don't see anything wrong with that.
If it were a problem, then we would probably have lots of failures when
blowing new firmware with the rig powered on, no reports of such failures.

I'm much more concerned with the false sense of protection from reversed supply leads?
provided by the recommended reverse diode and no inline fuse, that's a recipe for disaster.
We have several threads on this, search for "reverse polarity" here:??/g/BITX20/messages

Jerry, KE7ER?



On Sat, Jul 14, 2018 at 08:51 AM, Don - KM4UDX wrote:
Hum.....the build instructions say NOTHING about plugging in the raduino BEFORE the current test. ?So I didn't plug the board in -- and did the test per instruction.?

If if this is an important caution, why not just say..."plug in raduino then do test". ?Why leave us to guess and be stupid??

So so I was stupid.?


Re: Nextion display cutout and mounting. #ubitx #ubitx-help

 

Hi Dave and others using the Nextion display.

Nice to know all is running well.

However, did you do anything about the 3mm inactive strip along the RHS or did you mount the screen with a slightly smaller cut-out to the screen size? Perhaps you have not bothered about this at all?
I take it you got everything up and running using the supplied display first. I have the 2.8 and 3.2 displays available here.
Any issues with transferring the firmware?
Any tips would be welcome.

Derek G4VWI.


Re: Basic board test: 130ma @ 12.5 volts #ubitx

 

Hum.....the build instructions say NOTHING about plugging in the raduino BEFORE the current test. ?So I didn't plug the board in -- and did the test per instruction.?

If if this is an important caution, why not just say..."plug in raduino then do test". ?Why leave us to guess and be stupid??

So so I was stupid.?


Re: #bitx40help #radiuno #bitx40help #radiuno

 

It sounds like the raduino has been wiped. You will need to upload the code to the raduino again. You can find the factory code here---?

There have been accidents reported that resulted with the raduino reverting back to a blink sketch, or just blank, no program. I think you are doing a lot of unnecessary things to get this working, and that is causing your problems. It's usually much easier than this. Although I did have an accident that required me to reload the sketch and change it to bypass a damaged I/O cell on the nano.? I have since replaced the nano in order to use Allards newer sketches that used that blown out pin on the old nano.?

You may need to get the CH340 usb chip driver to program the nano if you haven't done that before.


Bigger Nextion display?

Stephanus K6NG
 

I am mounting everything in this recycled receiver and is wondering if i should go with bigger display or maybe two of the 3.5's. The latter means i will have to relocate the vfo knob.
Another option is to mount the 3.5 enhanced version expansion board below the screen and use the for the band select, band up/down and mode functions.
This is still a work in progress and the cut-out will eventually be filled with a bezel of some sort. Probably do a vacuum form insert for it.


Re: NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095

 

Pat,

A pain getting a dud, but looks like a bad one.....!!

Hopefully you get a replacement soon.
I deal with robotshop quite a bit and they have been good sellers...

Joe
VE1BWV

On Sat, Jul 14, 2018 at 11:11 AM pat griffin <patgriffin@...> wrote:

Joe,

I get the same result with power from USB, uBitx, and separate 5VDC supply. I have requested an RMA to exchange the display (Robotshop) but I'm pretty sure?it will be next week before I get a new one at the earliest.

Thanks for the reply

Pat AA4PG


Pat Griffin

From: [email protected] <[email protected]> on behalf of Joe <joeman2116@...>
Sent: Saturday, July 14, 2018 7:48:13 AM
To: BITX20
Subject: Re: [BITX20] NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095
?
Pat,

I am no expert, but I have 3 nextion displays 3.2E and 7 inch.

I have never seen? that type of picture displayed on any of them .
It looks faulty.

What is your power source for the 7 inch??
I run my 7 inch on its own wall 5v 2a power supply

Joe
ve1bwv


On Sat, Jul 14, 2018 at 8:11 AM pat griffin <patgriffin@...> wrote:

Joe,

I downloaded your code and yesterday the 7in Nextion arrived just in time for the weekend.? But, I get the attached image whether booting with an SD card or not and the Nextion IDE cannot connect to the display if trying to upload.? I have used these same procedures with the Nextion 2.4 and 2.8 with no problems.? Looks like a bad display to me.? What do you think?

Thanks,

Pat AA4PG


Pat Griffin

From: [email protected] <[email protected]> on behalf of Joe <joeman2116@...>
Sent: Monday, July 9, 2018 6:07:51 PM
To: [email protected]
Subject: Re: [BITX20] NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095
?
Vern, I usually attached both files..
See attached? - newest 7 inch for non E version. It will work fine on your 7 inch E version
You will be able to compile , just select your display type and size then compile to get your ,tft
It says test only because it has my latest changes as of this morning.
If you have any issue I can compile and send the tft for the non E version as well.
Let me know how it works

Joe
VE1BWV


Re: NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095

 

¿ªÔÆÌåÓý

Joe,

I get the same result with power from USB, uBitx, and separate 5VDC supply. I have requested an RMA to exchange the display (Robotshop) but I'm pretty sure?it will be next week before I get a new one at the earliest.

Thanks for the reply

Pat AA4PG


Pat Griffin
http://www.cahabatechnology.com/aa4pg.html/


From: [email protected] <[email protected]> on behalf of Joe <joeman2116@...>
Sent: Saturday, July 14, 2018 7:48:13 AM
To: BITX20
Subject: Re: [BITX20] NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095
?
Pat,

I am no expert, but I have 3 nextion displays 3.2E and 7 inch.

I have never seen? that type of picture displayed on any of them .
It looks faulty.

What is your power source for the 7 inch??
I run my 7 inch on its own wall 5v 2a power supply

Joe
ve1bwv


On Sat, Jul 14, 2018 at 8:11 AM pat griffin <patgriffin@...> wrote:

Joe,

I downloaded your code and yesterday the 7in Nextion arrived just in time for the weekend.? But, I get the attached image whether booting with an SD card or not and the Nextion IDE cannot connect to the display if trying to upload.? I have used these same procedures with the Nextion 2.4 and 2.8 with no problems.? Looks like a bad display to me.? What do you think?

Thanks,

Pat AA4PG


Pat Griffin

From: [email protected] <[email protected]> on behalf of Joe <joeman2116@...>
Sent: Monday, July 9, 2018 6:07:51 PM
To: [email protected]
Subject: Re: [BITX20] NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095
?
Vern, I usually attached both files..
See attached? - newest 7 inch for non E version. It will work fine on your 7 inch E version
You will be able to compile , just select your display type and size then compile to get your ,tft
It says test only because it has my latest changes as of this morning.
If you have any issue I can compile and send the tft for the non E version as well.
Let me know how it works

Joe
VE1BWV


Re: NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095

 

Pat,

I am no expert, but I have 3 nextion displays 3.2E and 7 inch.

I have never seen? that type of picture displayed on any of them .
It looks faulty.

What is your power source for the 7 inch??
I run my 7 inch on its own wall 5v 2a power supply

Joe
ve1bwv


On Sat, Jul 14, 2018 at 8:11 AM pat griffin <patgriffin@...> wrote:

Joe,

I downloaded your code and yesterday the 7in Nextion arrived just in time for the weekend.? But, I get the attached image whether booting with an SD card or not and the Nextion IDE cannot connect to the display if trying to upload.? I have used these same procedures with the Nextion 2.4 and 2.8 with no problems.? Looks like a bad display to me.? What do you think?

Thanks,

Pat AA4PG


Pat Griffin

From: [email protected] <[email protected]> on behalf of Joe <joeman2116@...>
Sent: Monday, July 9, 2018 6:07:51 PM
To: [email protected]
Subject: Re: [BITX20] NEXTION UPDATES FOR 7 AND 5 INCH - --ADAPTED FOR KD8CEC VER 1.095
?
Vern, I usually attached both files..
See attached? - newest 7 inch for non E version. It will work fine on your 7 inch E version
You will be able to compile , just select your display type and size then compile to get your ,tft
It says test only because it has my latest changes as of this morning.
If you have any issue I can compile and send the tft for the non E version as well.
Let me know how it works

Joe
VE1BWV