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: Step by step raduino software install instructions
I have two nano clones with FTDI and they work fine. I also have two nano clones with the CH340 chip and my Win 10 desktop and laptop do not see them. Both have the power LED light. 73 Ken VA3ABN On Fri, May 26, 2017 at 12:00 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
|
Re: Step by step raduino software install instructions
Jack Purdum
I have that problem, too, using Win 7. The COM port disappears after a fairly long period of inactivity. I have not been able to figure out why. Jack, W8TEE From: pat griffin <patgriffin@...> To: [email protected] Sent: Friday, May 26, 2017 10:15 AM Subject: Re: [BITX20] Step by step raduino software install instructions Sometimes it takes a bit for the computer to recognize the usb and port. ?I have had to reboot on occasion to get it to see it on Windows 7 and maybe on Windows 10 too.
Pat AA4PG
Pat Griffin
http://www.cahabatechnology.com
From: [email protected] <[email protected]> on behalf of terryhugheskirkcudbright via Groups.Io <terryhugheskirkcudbright@...>
Sent: Friday, May 26, 2017 7:34:42 AM To: [email protected] Subject: Re: [BITX20] Step by step raduino software install instructions ?
hi i have tried to follow the instructions - all is well until "configure the port" it only offers com 1 and com 2 not usb
and the upload fails terry gm4dso |
Re: Step by step raduino software install instructions
¿ªÔÆÌåÓýSometimes it takes a bit for the computer to recognize the usb and port. ?I have had to reboot on occasion to get it to see it on Windows 7 and maybe on Windows 10 too. Pat AA4PG
Pat Griffin
http://www.cahabatechnology.com
From: [email protected] <[email protected]> on behalf of terryhugheskirkcudbright via Groups.Io <terryhugheskirkcudbright@...>
Sent: Friday, May 26, 2017 7:34:42 AM To: [email protected] Subject: Re: [BITX20] Step by step raduino software install instructions ?
hi i have tried to follow the instructions - all is well until "configure the port" it only offers com 1 and com 2 not usb
and the upload fails terry gm4dso |
Re: Yatuli: the power of the bitx tuning trick in a lib
Pavel Milanes Costa
¿ªÔÆÌåÓýSorry for the delay Noel, I was working offline with a client and now is that I has time and $ to get online... hi hi hi Please check the examples bundled with the lib, once you loaded
the lib on the Arduino IDE you can go to examples and inside
Yatuli you willl find two examples "shuttletune" and
"optionselect" For you question, in the setup segment of the shuttletune example you can find this initialization. ========%<============================= void setup() { ??? // initialize serial communications at 19200 bps: ??? Serial.begin(19200); ??? Serial.println("Example init..."); ??? // Init the lib ??? St.init(APin, 6900000, 7500000, 100, 10000); ??? // 6.9 to 7.5 Mhz ??? // 100 Hz steps ??? // 10 kHz steps on edges ??? // Set 7.100 Mhz as the start freq ??? St.set(7100000); } ========%<============================= St.init(APin, 6900000, 7500000, 100, 10000); That's translated to this: St.init(analoPin, lowF, highF, normalStep, edgeStep); In this case you can read it uses A7, from 6.9 to 7.5 MHz, 100hz normal step and 10Khz steps on edges of the range. If you dont's set any starting point it will be calculated from the lower end and the actual wiper position. The start position of the pot is fixed with a separated function, you can use: St.set(7100000); To set the initial value of the pot to 7.1 MHz in this case, of course, it can swing a little down or up due to jitter in the analog read, in this case in +/- the normal step, so you can set it to 7.1MHz and get 7.9999 MHz or 7.1001 MHz but most of the time it will get right on spot. I coded the set() function separated from the init procedure just because it makes sense on my related project, and if you plan to use the lib just for option selection you can live without the set() function. The init() function is not exclusively of the setup() part in the code. Mind this: You has a setup like the raduino, but you need to change a setup option (USB shift, IF, etc) you entered the SETUP mode (the way to enter is not important at this time) and you are presented with a option menu: (yatuli has shifted to operate on dir() rather than value, and you get option select features) "?????? IF????? " Once you rotate the Dial you can get other options like: " ? USB shift ? " " Si5351 ppm " ..... Now you press one "OK" button, and you entered the IF option for example; by enterig into this sub-menu you are runing a code like this under the hood: St.init(APin, 11000000, 13000000, 10, 1000); // move the IF from 11 to 13 MHz in 10 Hz / 1Khz steps St.set(IF); And shiftted to movement functionality of the yatuli lib. By doing that now you can move via the "dial" the value of the IF and it will start on the actual IF, all with just one instance of the yatuli lib, one you can reach the point you want just press again the "OK" button and it will reset the lib to operate on the tune freq value under the hood. And you will be back to the menu select. You can make this with? as many variables you has, for instance in the raduino I can tell: USB shift, IF, VFO stating freq, Si5351 PPM, etc... Remember this is only the initialization procedure, you will need to include a check() on your loop() and test if the value has moved to act. See the examples, they are commented in excess to help other to understand the general idea. I'm coding a new raduino firmware based on this lib and my Si5351mcu lib for a friend, so far so good, I used a homebrew/breadborad version of the raduino hardware with a ATMeg168 instead a bigger ATMega328 of the read hardware; I has about 70% of the 16Kb filled by now with almost all the funationality of the amunters code. (I'm missing the CW code, but has a "HD" smeter/TX_power bar ;-) ) The real drawback is I don't has much free time do get into it and it get coded in weekend's? / midnigths style... 73. El 23/05/17 a las 16:45, Noel escribi¨®:
Sounds great Pavel,? so what is the format of the parameters we pass to this library?? |
Re: Step by step raduino software install instructions
Jack Purdum
Have you tried installing the drivers that are found in the drivers subdirectory? Run the program? dpinst-??.exe according to your system needs. Jack, W8TEE From: terryhugheskirkcudbright via Groups.Io <terryhugheskirkcudbright@...> To: [email protected] Sent: Friday, May 26, 2017 9:35 AM Subject: Re: [BITX20] Step by step raduino software install instructions hi i have tried to follow the instructions - all is well until "configure the port" it only offers com 1 and com 2 not usb and the upload fails terry gm4dso |
Re: Step by step raduino software install instructions <Updated 5/13/17>
Most Linux distributions package the Arduino IDE so it's best to install that way. You can use the Arduino library manager to install the required libraries which takes care of the windows-specific paths in the above instructions. On May 26, 2017 6:46 AM, "terryhugheskirkcudbright via Groups.Io" <terryhugheskirkcudbright=[email protected]> wrote: i have got the instructions for windows from pat griffin but i prefer to use linux. i have got win 7 but i do not like connecting windows to the internet cos of the wiced nasties. |
Re: Step by step raduino software install instructions <Updated 5/13/17>
Linux is largely the same.? You can find some information here:
Only catch at the moment is that version 1.8.2 has a bug in the installation script, so you'll want to install the hourly build (it's on the download page). Once the software is installed and you've added your user to the appropriate group then follow the OP's instructions for the rest. -- Darren, W9ZIM |
Re: Software question, possible feature request
If you don't want to use the function button for your mobile radio, then
why not install a small push button internally (inside the enclosure). This will still enable you to set everything to your liking, but it will prevent the user from accidentally changing some of the settings. Alternatively, you can change the "factory settings" that are hardcoded in the function factory_settings() starting at line 1302. In the setup() routine, at line 1437 is some code that reloads the factory settings under certain conditions: if ((digitalRead(CAL_BUTTON) == LOW) || (digitalRead(FBUTTON) == LOW) || (old_version != raduino_version)) { factory_settings(); } You could change the "if" condition so that the (revised) factory settings will be reloaded each time when you power up the rig: if ((digitalRead(CAL_BUTTON) == LOW) || (digitalRead(FBUTTON) == HIGH) || (old_version != raduino_version)) { factory_settings(); } 73 Allard PE1NWL On Fri, May 26, 2017 03:40, KC8WBK via Groups.Io wrote: I have a mobile radio built that I do not intend to add a functionbutton to. It is a radio that I want to keep simple and I don't want the user to be able to switch to USB or CW by mistake.?? commenting, uncommenting or changing values so that the radio starts up with the same values/function settings every time. frequency offset and Scan range. with a line of code somewhere??? Apparently it is offset using calibrate()? |
Re: Step by step raduino software install instructions <Updated 5/13/17>
i have got the instructions for windows from pat griffin but i prefer to use linux. i have got win 7 but i do not like connecting windows to the internet cos of the wiced nasties.
has anybody got similar instructions for linux terry gm4dso |
Re: I find the Transmit audio is a bit muffled has anyone else found this?
Mike,
toggle quoted message
Show quoted text
I put my first board through the analyser and found the IF filter around 1.8-2K as I remember. If you adjust the BFO in one direction the audio will sound sharper but less bassy and vice-versa. Check the BFO and replace the fixed cap with a 22pf and add a 40pf trimmer next to it. Or you could put just a 70pf trimmer. You could tell at what BFO freq. you are getting the best quality. Cheers Raj, vu2zap At 26-05-2017, you wrote:
I have 2 BitX40s one on 40 meters and the other is converted to 80 meters. I talk often with a group of amateurs on 80 meters mostly using a TS830s so they have a clear idea of my audio. When I use the BitX40/80 they say the audio is a bit muffled. I have 2 mics that I can use, one is a realistic CB mic that has an electret element in it and the other is an old dynamic mic that I have removed the dynamic element and substituted the electret element that came with the kit. I have recorded my own audio by transmitting into a dummy load and receiving on another rig, I have to agree the audio is a bit muffled on both rigs and with both mics. The realistic mic is a bit better than the converted dynamic mic. Now to the questions. |
Re: Raduino_v1.13 with scan function released
On Thu, May 25, 2017 at 09:03 pm, Soundararajan Ra. wrote:
Soundar, these are two different things:
The red CAL wire was used for calibration only (for basic BITX40 board with no extra mods and without function button). It is kept in the code for backward compatibility so that the software always works even without the extra mods. But if you wire up the Function Button then you don't need the red CAL wire anymore as the calibration can also be performed from the FB menu. Hope it's more clear now. 73 Allard PE1NWL |
Re: I find the Transmit audio is a bit muffled has anyone else found this?
Hi Mike,
The muffled audio is more likely due to the crystal filter passband rather than the mic amp. I've noticed this on another station myself. Moving the 12 MHz oscillator (BFO) up in frequency could be a solution to allow more high frequency audio modulation through the filter. The filter bandpass is centred on the lower side of the BFO. Scope for experimentation! Cheers, Gerard - VK2IO |
to navigate to use esc to dismiss