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
Search
raduino 1.27 upgrade
I?want to confirm how to upgrade for raduino??v1.27.
I will not operate cw mode but only ssb mode. I wired ?function buttom to? raduino A3(orange wire)? and grand(earth). after that all I need is install V1.27 to arduino nano.?? ?I think it is ok.But I am not sure. Please give me a answer or suggestion !! |
Hi Hiro-san,
toggle quoted message
Show quoted text
Please look in the instructions at The PTTsense is needed so that the Arduino "knows" that the radio is in RX or TX mode. This is needed for RIT, SPLIT, CW, etc. The PTTsense is also used to keep the frequency stable during TX and for suppressing the spurious RF burst when you switch from RX to TX. 73, Allard PE1NWL On Tue, December 19, 2017 01:22, aidahappy@... wrote:
Thanks Allard for information. |
Hi Hiro san,
toggle quoted message
Show quoted text
The PinChangeInterrupt library is normally not installed by default. You have to add it to your IDE by yourself. You only have to install the library one time, once it is installed it will be kept on your pc. in your IDE menu, go to 'sketch' => 'include library' => 'manage libraries'. The Library Manager will be opened. Wait for some time to collect all library information. When it is ready: In the search box, enter "PinChangeInterrupt" The Library Manager will show some libraries. One of them is named "PinChangeInterrupt by Nico Hood". Click on this library, and press the "install" button. It takes only few seconds to install the library. When installation is finished, press the "close" button. After this you should be able to compile the Raduino sketch without error. 73, Allard PE1NWL On Thu, December 21, 2017 03:08, aidahappy@... wrote:
Hi Allard san |
Hi Hiro san,
toggle quoted message
Show quoted text
OK, very good! I recommend to first install v1.27.3 and wire PTTsense. (Just to make sure that everything is working OK in v1.27.3) When everything works correctly, then move to v2 as next step. Sayonara, 73 Allard PE1NWL On Sat, December 23, 2017 02:07, aidahappy@... wrote:
Hi Allard san, |
Hi Allard san |
Hi Hiro san,
So now you successfully installed v1.27.3, congratulations! Perhaps you want to install v2.02 as next step? In Europe we sometimes have a lot of interference (especially in the evenings) from some shortwave broadcast stations that are operating in 41m band. The strong signals can mix with some harmonics of the BFO frequency. As a result the mixer products (image signals) are appearing in the 40m amateur band. But it happens only in LSB mode.? If we switch to USB mode, then the interference is disappeared. The reason is that in LSB mode, the VFO is set to 5 MHz, in USB it is at 19 MHz (other side of IF). Do you have this problem also in Japan? If you have this problem then v2.02 software could fix it. Because in v2 software we set the VFO always to 19 MHz (for both LSB and USB mode). When the VFO is at the high side of the IF then the mixer products will be outside the 40m band. For v2 an extra small modification (digital BFO mod) is required: You will have less interference from broadcast stations and also less "birdies". 73 Allard PE1NWL |
Thanks Bob, for this suggestion.
toggle quoted message
Show quoted text
Is an extra option in the SETTINGS menu really required for this? It is doable but it would some extra program space. Or would an additional user parameter somewhere at the top of the code also be acceptable? (in that case the user would have to edit the parameter value and recompile/upload the code to change the setting) Another idea is to use the scan_delay parameter that we already use for scan mode. In that case the same delay would be applied for frequency scan mode as well as for fast tune when the pot is at either end of the range. Let me know what you think is the best solution. 73 Allard PE1NWL On Fri, January 5, 2018 16:29, Bob Gass via Groups.Io wrote:
Allard, |
I didn't change the delay but did modify the increments to make the tuning smoother. Especially for CW the 10Hz?
increments makes it easier to tune to the correct frequency and avoid the sudden jumps in the wilderness: void doTuning(){
? int s;
? unsigned long prev_freq;
?
? s = enc_read();
? if (s){
? ? prev_freq = frequency;
? ??
? ? if (s > 10)
? ? ? frequency += 20000l; //!!200000
? ? if (s > 7)
? ? ? frequency += 1000l; //!!10000
? ? else if (s > 4)
? ? ? frequency += 500l; //!!1000
? ? else if (s > 2)
? ? ? frequency += 100l; //!!500
? ? else if (s > 0)
? ? ? frequency += ?10l; //!!50
? ? else if (s > -2)
? ? ? frequency -= 10l; //!!50
? ? else if (s > -4)
? ? ? frequency -= 100l;
? ? else if (s > -7)
? ? ? frequency -= 500l;
? ? else if (s > -9)
? ? ? frequency -= 1000l;
? ? else
? ? ? frequency -= 20000l;
? ? ??
? ? if (prev_freq < 10000000l && frequency > 10000000l)
? ? ? isUSB = true;
? ? ??
? ? if (prev_freq > 10000000l && frequency < 10000000l)
? ? ? isUSB = false;
?
? ? setFrequency(frequency);
? ? updateDisplay();
? }
-- 73, Yvon NU6I |
Hello Allard,
I am a CW-only ham, so your 1.27.7 sketch made me love the BITX40. Today I tried to upload the 1.28 upgrade but, surprisingly, it does not sense the key and transmit CW any more. Moreover, the command-driven menus are not working as before. I came back to the 1.27.7 version and now all is working as it should. Did I miss something? Thank you so much, best 72 Joe, IZ0WIT |
The PTTsense mod is required for CW operation. During start up, the firmware tests whether the PTTsense mod is installed.
It was found that the PTTsense mod is not reliably detected on some radios, possibly due to small variations in the hardware environment. Inserting a small delay in the setup() routine fixes the issue. The extra delay gives the voltages on the Arduino inputs some time to settle at power on. Improved sketch version v1.28.1 will be released shortly via Github. 73 Allard PE1NWL |
to navigate to use esc to dismiss