Keyboard Shortcuts
Likes
- BITX20
- Messages
Search
Re: VFO/BFO selecting outputs
开云体育Well, got the coax attached and all I
get is birdies, no RX. Not sure why. I can see the BFO clk
running. I removed the xtal and attached the coax as in here:
/g/BITX20/topic/4703461#24270 I didn't make any other changes to the code, which I may need to for LSB/USB operation. Unfortunately I ran out of time and have to take off for mt 48 hour work shift, so I won't be able to dig into it until Wednesday aft. Any suggestions as to where to look? Thanks! Jonathan
|
Re: Birdie at 7199 - a surprising observation!
Here is a picture at the output of Si5351 not connected to a mixer, just terminated with 51R resistor. This happens when the output is different from 25MH. Only CLK0 is enabled. Quartz at 27MHz. The spurious "needles" in the spectrum appear to be related as follows: ±狈*4*触痴贵翱-25惭贬锄触 And apparently these are not the harmonics of the fundamental VFO frequency. This is rather disturbing because they appear blow and above the fundamental. No wonder I have numerous birdies. Suspiciously 25 MHz is 800 MHz (PLL) divided by 32... I wonder if decoupling the different supply pins of Si5351 might help. Another thing I might tryis to buffer the CLK0 with a fast logic gate with separate low noise power supply. 73 de LZ1NEF |
Re: Birdie at 7199 - a surprising observation!
Petry, Kevin
开云体育Just a suggestion: I found that the drive current line in my Raduino was commented out.? I removed the comment slashes and compiled with the current set a 2 MA. I also replaced the two wires that carry the VFO signal from the Raduino to the board with a short length of RG-174U coax and the birdie is now completely gone.? Not sure which change killed it at this point. Kevin |
Re: Bitx-40 S meter
Ok, I figured it out for those that are having trouble. ?Open the main BitXtra40 file. ?Then open a new tab in the Arduino IDE paste the information from the UpsideDown file into that new tab. ?Then compile. ?There may be a different way to open both files in the same IDE environment, but this is how I got it to work.
Question for you Andrew -? I havent uploaded this sketch yet, but I probably will tonight. ?Does this have the tuner like Don had, or like Farhan designed? ? |
Re: Transmit audio
Michael Davis
I too made the "rookie" mistake. And by using the RS electret capsule, may have compounded the problem further. I did have my base rig antenna disconnected but there was still the ambient noise thing. Originally I had no audio, which led me to replacing my mic wiring back from the board and the electret. Went back to the original (which was still ok) and even in close proximity the audio sounded better, if not great. Will try the web sdr later. Still would like to know the original electret capsule spec. Anyone? Thanks to all
Sent from Mike's iPad WA1MAD |
Re: microphone mh-34b4b
Hans, you will need to rewire the mic.
toggle quoted message
Show quoted text
Remove R1 Connect mic -ve to ground wire PTT button to ground and other end to data pin use that pin for PTT You will need a 4pin socket. At 10-04-2017, you wrote: Hi, |
microphone mh-34b4b
hanz PA3ZZ
Hi, Does any one have experiance with connecting a handmic like this one?mh-34b4b ? The ptt doesn't switch in the bitx, led on mic is lit. With the switch delivered with the bitx the ptt works fine. I tried the mic with the test circuit (led and resistor and it switches the led on and of). Any one an idea? 73's hanz de PA3ZZ |
Re: The Users User Manual
Correction- the alignment instructions have been amended. Turn both controls down clockwise. Turning them up is COUNTERCLOCKWISE. R136 is to the right of the black, round, short, heatsink. This adjustment will ensure you have optimal power output for your rig. And you can turn it down for linear amplifiers. Output reading required. Alignment of the BITX40 The BITX40 comes pre-aligned out of the box. However, it may go out of alignment for some reason and here are the steps to align it. Keep the circuit handy while you do it. If you can't understand what it means to 'insert the ammeter into the power line' ask someone for help.
<>Note: You may use the RV136 to reduce the output power to drive an external linear or go QRPp. You should check the power settings with the multimeter, if and when you decide to use 24 volts.?Small adjustments may need to be made. |
Re: Birdie at 7199 - a surprising observation!
To: N7PXY Ash has just recently uploaded the Bitx40.ino file used in the shipped product. You should get this and upload it to your Raduino and make sure you still have Etherkit 2.0.1 library installed. This should be a factory reset. You can find and try changing a line of code to try and scare away the birdie later. Which is on line # 598. Here is the github link for Ashar Farhan's working sketch-?https://github.com/afarhan/bitx40 |
bitx40 in the repo
fellow coders, what follows is gibberish to those who do not use git to control their source code. ignore please. i am pushed the production bitx40.ino to the repository. it is not raduino.ino, but bitx40.ino. ?i have a few pull requests pending, but before that, i would request you to merge into the small bits that were already fixed in the main. following this, i will pull from you all. - f |
Re: Phase HF RX
hi , ?please try to use TL074 instead for lower noise level than TLo84.On Sun, Apr 9, 2017 at 11:54 PM, Miguel Angelo Bartie via Groups.Io <py2ohh@...> wrote:
--
Regards
Sarma ? |
Re: shipping options, raduino, source code and website updates
College Professor Simon Thompson
开云体育I like and appreciate the term “comrades”.
|
Re: Transmit audio
I was a few things. The first rookie mistake was setting the receiver to a certain freq, and the BITX to the same and transmitting. The raduino was a few hundred Hz off and not calibrated yet. The close proximity of the receiver, received the signal much better than a distant one would have, sounding kinda weak and kinda fuzzy. I used the receiver like this before getting the BITX and knew to collapse the antenna, and turn off DX so as not to overload the front end signal amplifier. Searching for TX signal clued me in that I was a bit off intended freq. Assimilating a calibration fix has been nice. I only used it once so far. I also replaced the original mic capsule which improved the fuzzy oscillation sound a bit more. It did sound a little bit fuzzy and weaker on WebSDR with original mic. I don't know the specs on it. It came from a broken "The Clapper" wall switch, and is the same size. So the short answer is yes, it was too close.? |
Re: Bitx-40 S meter
Jack Purdum
Every Arduino program must have a?setup() and loop() function. The?setup() function?is used to set the environment in which the program runs. It only runs one time when the program first begins to run. When your code in setup() finishes execution, program control immediate begins to execute the code you wrote for the loop() function. The code in the loop() function runs until: 1) power is removed, 2) your perform a reset, or 3) there is some kind of component or other failure. Functions you write are called as part of the loop() function. The exception are Interrupt Service Routines which get called as needed, depending upon how you set them up.? If all of this seems strange to you, print out the Raduino code, look for setup() and loop(), and see if you can follow what's going on. If you have your ham license and can still fog a mirror, I know you can learn to program an Arduino. It just takes a little time and practice. Jack, W8TEE From: Mark via Groups.Io <mark2w0jmk@...> To: [email protected] Sent: Sunday, April 9, 2017 3:51 PM Subject: Re: [BITX20] Bitx-40 S meter Thank you Jack but that went right over my head. I did try to add pinMode(A2, INPUT); To where I thought was the setup but had a load of errors straight away. Like I said I'm not one for this programming lark. |
Re: Transmit audio
So how did that get resolved? ?I assume that SW receiver was just too darn close. Jerry On Sun, Apr 9, 2017 at 03:13 pm, John Smith wrote:
On my SW receiver it sounded like I was talking into a fan. ? |