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
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, |
Re: Raduino issue
Hello Sam,
There is a good chance your Raduino is likely working and you have an issue with the encoder. Since it displays the version at start and nothing more after that it certainly looks like you have the push-button locked or shorted in the down position. In the factory firmware and the KD8CEC firmware (at least the version you are using), when the push-button is held down at start-up it first waits for the button to be released, then it enters Factory Alignment mode. That's why I suspect the push-button input is held down permanently. Easy test is to just disconnect the brown wire from the Raduino connector and see if you get the frequency displayed. All the best, 73, John (VK2ETA) |
Re: toggle for low output and max output?
#ubitx
As this is for low power, how about separating out the power wire going to the final amp stage and using one of the buck or buck/boost converters from China that is on ebay ?? They have a pot on them and you can set the voltage very easy, especially if the pot is removed and a larger one put on the front of the ubitx. The boards are small and only a few dollars shipped from China. On Wed, May 23, 2018 at 4:15 PM, ajparent1/KB1GMX <kb1gmx@...> wrote: No matter how you do it it will require hardware with my mods or no. |
Re: spurious signals on FT8
#ubitx
Input levels to any transmitter for any digital modes ARE critical. There are guidances published in various places about how to set up the modulation levels, some give exact instructions for good results and some are more vague and don't give such good results. I ran into difficulties running PSK31 some years ago and learnt the hard way. Now I'm preparing to get going with these new modes and am studying the setting myself so I can't give off the cuff help.
There is one general pointer I can repeat - when you arrive at a suitable level back it off some 5% or even 10%. Good luck. |
Re: Raduino replacement
#bitx20
Mike aka KC2WVB
Sure, its fun. Just like girls used to be.? I may just order another whole kit myself too. I can always build an analog VFO for the one I have. That would keep me out of trouble. Best wishes. Mike On Wed, May 23, 2018, 4:29 PM Bo Barry <bobarr@...> wrote: Just saw an idea for a use for the Raduino so I'll order a whole kit.? |
to navigate to use esc to dismiss