Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- BITX20
- Messages
Search
SEIKO M4032 LCD Display
I came across an old '80s project box with a circuit board and lcd display perfect for the ubitx... However I am finding very little documentation on the SEIKO M4032 LCD display...? Any information or relative info on the display would be greatly appreciated... I would like to use this LCD as it could display alot of information and fits the existing window... Thanks, Glenn VE3JAU |
Re: ND6T AGC implementation for uBIT-X
w7hd.rh
¿ªÔÆÌåÓýI've sent the paypal account money for 1 of each.In case the address didn't make it: Ron Herring W7HD 10270 W Mars Rd Tucson, AZ 85743 On 05/23/2018 12:53 PM, Kees T wrote:
OK, the pass 2 boards have arrived, they look good so, let er' rip. -- Ron W7HD - NAQCC#7587 OMISS#9898 KX3#6966 LinuxUser#415320 Editor OVARC newsletter |
Re: toggle for low output and max output?
#ubitx
On Wed, May 23, 2018 at 05:29 pm, K9HZ wrote:
Relay switching of RV1 is on the website.?That is a much more elegant way of doing what I was thinking with duct tape and bailing wire. Looks like the problem wasn't the idea but my potential execution ? -- |
Re: RF power chain mods and improvements..
Allison, what i am seeing in my 'proto' build of driver stages only, using MPSH10's, is a flat response within 1dB BUT that's with relatively low drive levels using the Rigol at -20dBm input.
toggle quoted message
Show quoted text
If I up the SA output level to around -2dBm (~150mVrms) which I think is the nominal level driving these stages, then the response is much worse.?? I also see severe +ve clipping levels at the base of the Q92 etc stage. Using the sig gen (HP8640B) to drive the driver stages with 150mV, I get around 500mW out at 7MHz, rapidly dropping as the frequency rises.? Clearly, as you have said, the stages just can't deliver enough power to the FET's over the whole range. Unfortunately I don't have any 2N3866's here but do have a few 2N4427's i could try. (500MHz Ft only though)? For the 2N2369 stage (Q90), I have the PH2369 which appears to be the same part. Does the clipping I am seeing in the final driver stage, mean that stage needs to be re-biased with the 2N3866's?? If so what did you use? Also, have you investigated what levels come out of the Modulator Vs frequency? It will also need to be relatively flat also for driver mods to work. glenn vk3pe On Wed, May 23, 2018 at 08:35 am, ajparent1/KB1GMX wrote:
Testing note.. |
Re: Raduino CAD Files
I agree that setting the IDE set up to compile and program can be tricky, but once you get a good setup, it works just as smoothly as native Arduino parts. The Pill? I'm using seems to have a Maple Mini USB bootloader and the compiler identifies it as a 128K part, but I haven't tested that.
I have a souped up version of the stock uBitx code that has an ILI9341 main display, an ILI7735 S-meter display, interrupt-driven encoder and a 10khz interrupt driven A/D audio sampler for the S-meter and AGC control. I'm using libraries from Roger's repository. Everything runs very fast and silky smooth tuning with the 400ppr encoder. I still have to check out EEPROM functionality, but I'm confident the community will work out any issues. The thing I like about the Pill is that it can be my new 'go-to' board for 'throw-away' projects. I can afford to keep a dozen of them around and not have to worry if I damage or destroy one. I have my souped up Raduino Pill board about 75% complete, waiting for final routing changes as I keep tweaking the schematic. However, all work will stop when I leave town for 3+ weeks this Sunday. Joe |
Re: RF power chain mods and improvements..
Would the 2n5109 work in all the stages or is the 1W dissapation a
problem? tim ab0wr On Wed, 23 May 2018 08:35:36 -0700 "ajparent1/KB1GMX" <kb1gmx@...> wrote: Testing note.. |
Re: ND6T AGC implementation for uBIT-X
Hi Kees,
a query/suggestion on your DX postage: Here in Aus I can use a DL envelope to a thickness of 5mm, just sent as an Airmail letter. I have been using this method for my VK4PLN boards to send them DX at a cost of AU$3.50 for the postage. Could you not do the same with these? Or have a board only option with letter postage for those with a stock of SMD... Thanks Nick VK4PLN |
Re: toggle for low output and max output?
#ubitx
Relay switching of RV1 is on the website.?
toggle quoted message
Show quoted text
Dr.?William J. Schmidt - K9HZ On May 23, 2018, at 2:15 PM, ajparent1/KB1GMX <kb1gmx@...> wrote:
|
Re: RF power chain mods and improvements..
You results so far are in agreement with what Glenn VK3PE has found, see his posts: /g/BITX20/message/44289
Great work. Ill be keen to see how you go with the MPSH10/MMBTH10 in the drivers... 73 Nick VK4PLN |
Re: toggle for low output and max output?
#ubitx
I am experimenting with replacing RV1 with a 31dB, RF step attenuator board from SV1AFN.?
|
Re: Raduino issue
No go on the brown wire. I also tried 4 letter words and crying. Moving on to whiskey until the nano gets here. Thanks for the suggestion tho On Wed, May 23, 2018, 2:55 PM Sam Tedesco <stedesco619@...> wrote:
|
Re: ND6T AGC implementation for uBIT-X
toggle quoted message
Show quoted text
|
Re: W8TEE vft/tft questions
Hi Jack, thanks for answering.
I have been watching the debug code you mentioned, and the output has changed since things went south. I added some Serial.print statements of my own.? After watching the debug output for a while, I wanted to know what was going on in SetEncoderDirection: void SetEncoderDirection() {
? encoderDirection = 0;
? newPosition = rotary.read();
?if (newPosition != oldPosition) {
? ? ?Serial.print("Old: " );
? Serial.println(oldPosition);
? ?Serial.print("New: " );
? Serial.println(newPosition);
?}
? if (newPosition != oldPosition) {
? ? if (newPosition > oldPosition)
? ? ? encoderDirection = 1;
? ? else
? ? ? encoderDirection = -1;
? ? oldPosition = newPosition;
? }
} ...and also here, at the top of your debug block: #ifdef DEBUG?
?Serial.print("Direction: " );
? Serial.println(encoderDirection);? ? ? ? ?
Serial.print("Examine Fast Tune: Start = ");? ? ? ? // May be useful for setting Fast Tune rate
Serial.print(fasttuneStart);
Serial.print("? ?end = ");
Serial.print(fasttuneEnd);
Serial.print("? diff = ");
Serial.println(fasttuneEnd - fasttuneStart);
#endif?
With this in place, I turned the encoder one detent stop, and you see that SetEncoderDirection was called three times.? I kept doing this, slowly, and you can see from the serial monitor output below that even though I am turning the encoder int he same direction, the encoderDirection is variously 1 and -1.? Every 3rd turn the frequency is just not updated at all, but with the vacillating encoderDirection, the freq. goes up 100Hz and down 100Hz.? I thought maybe a bad solder connection was causing a kind of "echo" in the circuit, so I re-flowed the solder to pins 18, 19 and 20.? I have tried a couple of encoders with the debounce caps installed (but who knows, maybe I have a drawer full of bad ones).? I was reading your followup article on encoders and when I got to the end where you suggest always to look for the last thing you think might be wrong, I even changed the connection wires.? Last thing? that I can think of is to swap out the Arduino mini, which I will get to in a day or so (ugh, all those header pins to solder).? If you can suggest anything else, let me know.? Serial output follows: First turn here: Old: -1
New: 0
Old: 0
New: -1
Old: -1
New: 0
Direction: 1
Examine Fast Tune: Start = 3324? ?end = 11398? diff = 8074
Old: 0
New: -1
Old: -1
New: 0
Old: 0
New: -1
Direction: -1
Examine Fast Tune: Start = 11539? ?end = 31281? diff = 19742
Old: -1
New: 0
Old: 0
New: -1
Old: -1
New: 0
Direction: 1
Examine Fast Tune: Start = 31422? ?end = 40482? diff = 9060
Old: 0
New: -1
Old: -1
New: 0
Old: 0
New: -1
Direction: -1
Examine Fast Tune: Start = 40623? ?end = 48869? diff = 8246
Old: -1
New: 0
|
Re: Raduino issue
I did pull the raduino out and booted it standalone. It still showed only the firmware. Would it get locked in factory mode? On Wed, May 23, 2018, 2:45 PM Sam Tedesco <stedesco619@...> wrote:
|
Re: toggle for low output and max output?
#ubitx
Allison,
toggle quoted message
Show quoted text
I think VK2ETA's approach is good enough for adjusting the power out by a few dB. He moves where the transmitted signal lies within the 45mhz filter response, taking it down the skirts to attenuate.? The filter is fairly broad, so the frequency? response of our 2khz bandwidth audio is not significantly affected. On receive, the desired signal is put back in the center where it belongs. ? ??/g/BITX20/message/46235 ? ??/g/BITX20/message/46241 It could be that this technique raises the level of some close in undesired products, but not by much if we're only talking a few dB of attenuation.. And I'm not aware of anything undesired that is close enough to matter. If it works, this gives us a no-hardware method of attenuating the transmitted signal. Do you see any issues with this approach? This from Ian:? ?/g/BITX20/message/50144: ? ? "2.ATT function has been added to reduce RF gain (Shift 45Mhz IF)" Not clear if that's for transmit or receive. But suggests to me that he has added VK2ETA's trick to his code. One issue is that the transmitted CW signal never goes through the 45mhz filter. But that could be fixed by having CW unbalance one of the other two mixers, and adjusting the firmware accordingly. Jerry, KE7ER No matter how you do it it will require hardware with my mods or no. |
Re: toggle for low output and max output?
#ubitx
No, just no.? We are working with a linear or trying to be linear.? Plaing with the voltage to the
finals would be bad. Allison |
Re: Raduino issue
Thank you! I thought about that. I tried reverting to the original firmware and it was the same. Was tempted to disconnect the entire encoder but left it as is. Will give it a shot.? On Wed, May 23, 2018, 2:34 PM John <vk2eta@...> wrote: Hello Sam, |
to navigate to use esc to dismiss