Keyboard Shortcuts
Likes
- BITX20
- Messages
Search
Re: KD8CEC 1.072 download
I did not say that it would not work for Windows, I said that I do not know what the corresponding commands are on Windows - changes are that they are?the same (or very close), but without any first hand experience, I would not want to spread any misinformation. Git is available for Windows, but you may want to read a Windows specific tutorial.?
-- Karl Heinz - K5KHK |
Re: KD8CEC 1.072 download
Jack Purdum
Karl:
I've used version control (VC) systems on everything from a PC to a full-blown mainframe running VMS. That said, most Arduino users probably see VC as an unnecessary layer to negotiate each time a new release comes out...they are not in a commercial software development environment. What I've done with Ian's releases is to create new subdirectories for each release: ??? C://IanLee/Version106/ubix_20.ino... ????????????? /Version1072/ubix_20.ino ????????????? /WorkingVersion/ubix_20/ubix_20.ino... and so on. I then have a "working directory" (i.e., the?WorkingVersion above) that holds the most recent version which is copied from the latest subdirectory. I can then traverse to this working directory from within the IDE, click on the INO file and off I go. This also allows me to return to the "original state" of the code should the need arise, but without a VC system. True, I lose the intermediate steps that got me from point 'A' to point 'M', but for most users, they don't care anyway as long as the original is preserved. Jack, W8TEE
On Tuesday, April 24, 2018, 8:24:10 AM EDT, Karl Heinz Kremer, K5KHK <khk@...> wrote:
This is why Ian is using a version control system. As long as there are labels attached to each version, you can always go back and forward between versions without having to resort to different file names or different folders. As Ian explained, using?different filenames actually breaks this mechanism.?You may want to look into a Git tutorial to see how easy it is to - with just three or four commands you can do all that. All you need is to have Git installed on your system.? To create a copy of the repository, you use this command (this assumes a Linux or other Unix type system - I don't know what the corresponding commands would be for Windows): git clone? You then go into the ubitx folder: cd ubitx From within this folder, you can list the tags that are?available: git tags If you want to use the latest version, you are usually already all set, to go back to a previous version, you would use?the checkout command: git checkout v1.06 The argument you use (in this case "v1.06" is one of the tags that were listed with the "tags" command above). You can always find out what's going on by using the "status" command: git status Especially if you?want to make your own changes, Git is a great system, because you will always know what you've changed and you can keep track of your changes by creating your own branches and tags.? This is how professional software development is done.? -- Karl Heinz - K5KHK |
Re: KD8CEC 1.072 download
Yes Git is a version control system, but not everyone is a software engineer! I try to accommodate the people who will be trying to use my software. rOn On April 24, 2018 at 8:24 AM "Karl Heinz Kremer, K5KHK" <khk@...> wrote: |
Re: KD8CEC 1.072 download
Gordon Gibby
¿ªÔÆÌåÓýBut if this doesn¡¯t work for windows users, the most common sort of us I suspect, exactly how does this benefit us?The only Linux that I have available to me is a raspberry. I have plenty of those. Am I able to run the integrated development environment on raspberry?
|
Re: KD8CEC 1.072 download
Gordon Gibby
toggle quoted message
Show quoted text
|
Re: KD8CEC 1.072 download
This is why Ian is using a version control system. As long as there are labels attached to each version, you can always go back and forward between versions without having to resort to different file names or different folders. As Ian explained, using?different filenames actually breaks this mechanism.?You may want to look into a Git tutorial to see how easy it is to - with just three or four commands you can do all that. All you need is to have Git installed on your system.?
To create a copy of the repository, you use this command (this assumes a Linux or other Unix type system - I don't know what the corresponding commands would be for Windows): git clone? You then go into the ubitx folder: cd ubitx From within this folder, you can list the tags that are?available: git tags If you want to use the latest version, you are usually already all set, to go back to a previous version, you would use?the checkout command: git checkout v1.06 The argument you use (in this case "v1.06" is one of the tags that were listed with the "tags" command above). You can always find out what's going on by using the "status" command: git status Especially if you?want to make your own changes, Git is a great system, because you will always know what you've changed and you can keep track of your changes by creating your own branches and tags.? This is how professional software development is done.? -- Karl Heinz - K5KHK |
Re: KD8CEC 1.072 download
Jack Purdum
It would also make it easier to identify the version just by a glance at the directory that hold the code files. Because the INO file must have the same name as the directory its in for the IDE to compile the file, instead of all versions sitting in a directory name ubitx_20, it makes sense to have:
C://ubitx_20V1072/ubitx_20V1072.ino ????????????????? ubitx_factory_alignment.cpp ????????????????? //...and so on... ???????????????????????????? This way the "old" versions are preserved when the new one is released. I would still like to see only the source file containing the setup() and loop() functions be given the INO secondary file name and all the others given CPP secondary file names. Currently, using all INO file names causes the compiler to get sloppy on parameter type checking and that can be a nasty bug to isolate, especially when no symbolic debugger is available. True, the change will identify a host of warnings, but should uncover no bugs, since the code compiles correctly as is. I did that for Farhan's original code and while it took some time, it's really grunt work and not difficult to change. Jack, W8TEE
On Monday, April 23, 2018, 11:45:03 PM EDT, K9HZ <bill@...> wrote:
Im not sure you understand this completely, so ill put this more clearly. When the main sketch has the same name from version to version and you upload it to the Arduino IDE, it over-writes the previous version because it has the SAME NAME. ?Of you were to include the version number in the program name, they would not over-write.? Dr.?William J. Schmidt - K9HZ J68HZ 8P6HK ZF2HZ PJ4/K9HZ VP5/K9HZ PJ2/K9HZ ? Owner - Operator Big Signal Ranch ¨C K9ZC Staunton, Illinois ? Owner ¨C Operator Villa Grand Piton - J68HZ Soufriere, St. Lucia W.I. Rent it: email:??bill@... ? On Apr 23, 2018, at 6:56 PM, Ian Lee <kd8cec@...> wrote:
|
Re: Teensy 3.5/3.6 upgrade for uBITX
Jack Purdum
Not completely, as they still don't know what it can do. However, I did want to stir up some interest beforehand. Also, I don't want to take a total hit from people who ordered add-on boards (filters, keyers, AGC, etc.) point at me saying: "You should have told us!" For some reason, that prospect really bothers me. This way, at least I can say I tried to tell them that something is on the horizon.
Jack, W8TEE
On Monday, April 23, 2018, 11:50:36 PM EDT, K9HZ <bill@...> wrote:
Now that the cat is out of the bag... Dr.?William J. Schmidt - K9HZ J68HZ 8P6HK ZF2HZ PJ4/K9HZ VP5/K9HZ PJ2/K9HZ ? Owner - Operator Big Signal Ranch ¨C K9ZC Staunton, Illinois ? Owner ¨C Operator Villa Grand Piton - J68HZ Soufriere, St. Lucia W.I. Rent it: email:??bill@... ? On Apr 23, 2018, at 8:18 PM, Jack Purdum via Groups.Io <jjpurdum@...> wrote:
|
uBITX top level PCB - status?
Jeroen Bastemeijer
Dear all,
A (very) short intro: My name is Jeroen, I'm a HAM since 1996, I like to build my own stuff. Getting on the air just occasionally. Now my question: What is the status of the AE7EU top-board? I saw some posts on the list in January, after that it seems very silent around the top-board. Is there any progress? News? For what it is worth: a bare PCB would suffice for me, soldering SMD is no problem. Best 73s Jeroen, PE1 RGE |
Re: Practical CW Operation?
#ubitxcw
David Wilcox
¿ªÔÆÌåÓýA great CW filter is the CALF sold by John, KC9ON, at? . ?You can use his stock set up or experiment with different variables if you are an audio nerd and the cost is very reasonable. ?I have 3 or 4 different filters but his is my GoTo filter most of the time. Dave K8WPE On Apr 23, 2018, at 12:36 PM, Jack Purdum via Groups.Io <jjpurdum@...> wrote:
|
Re: Teensy 3.5/3.6 upgrade for uBITX
David Wilcox
¿ªÔÆÌåÓýHey Guys, Got my bag packed for FDIM, car ready to travel, my ticket bought for FDIM and Xenia (The first time I saw Xenia was after the tornado of 1970 or there abouts. ?It sure looks better today.) ? Now if I can fake the calendar out so we can meet soon and learn about this new stuff. ?Thanks for all you do for us. ? Dave K8WPE On Apr 23, 2018, at 9:02 AM, Jack Purdum via Groups.Io <jjpurdum@...> wrote:
|
Re: UBITX Assemly Wiki Page
#ubitx
Bob, Overall wiring and? a Nice presentation.
all the best regfards sarma vu3zmv ? |
Re: Upgrade the software to Allard's version
#radiuno
#bitx40help
#nano
Many thanks Marco
downloaded!
I will do the appropriate checks,
Thanks again
Sergio IU2KOI |
Re: Teensy 3.5/3.6 upgrade for uBITX
The uBitx has a 12mhz BFO.
toggle quoted message
Show quoted text
We have trouble on the uBitx with either the 12mhz USB port oscillator or the third harmonic of the 16mhz processor oscillator wreaking havoc with the receiver.? Could be dealt with through shielding and bypass caps and beads. Alternately build a Raduino from scratch with an oddball processor clock and no USB port.? Can use 3.3v UART lines to an FTDI cable or similar when doing firmware downloads from the Arduino IDE.? All the USB chip on the Nano does is convert from USB to UART signalling.? ? The STM32F103 in the 64 pin flat pack would be a good choice. There are pin compatible parts throughout the ARM processor range,? including one with floating point hardware.?? The STM32F103 is used in the Blue Pill. Jerry, KE7ER On Mon, Apr 23, 2018 at 09:42 pm, Gary Anderson wrote: No way should anyone hate anything.? It may be an eye opener to some what can be done with a modern micro-controller.? I am glad Jack gave honorable mention to the Protoneer.? Before I ordered it last week, I came up with zero hits for Protoneer here. Thought I might be a little crazy since very sharp minds are active and voicing their opinions.? I hate to see great? software work by Ian and others be limited to choices based on the flash memory space of the Arduino Nano, which is also consumed by the boot loader.? The idea is this may help those that want a lower end "modern" 32 bit digital solution with a reasonable amount of SRAM for their uBITX with a small $ additional investment.? Even the Pi fans might find a need for a little more horsepower in the micro-controller.? Then again, I could be blown away by a pure Pi controller implementation. |
Re: KD8CEC 1.072 download
¿ªÔÆÌåÓýMaybe I¡¯m missing something here but I just put each downloaded version in its own folder and have no problem with overwriting files. Mike K5ESS ? From: [email protected] [mailto:[email protected]] On Behalf Of K9HZ
Sent: Monday, April 23, 2018 10:45 PM To: [email protected] Subject: Re: [BITX20] KD8CEC 1.072 download ? Im not sure you understand this completely, so ill put this more clearly. When the main sketch has the same name from version to version and you upload it to the Arduino IDE, it over-writes the previous version because it has the SAME NAME. ?Of you were to include the version number in the program name, they would not over-write.? ? Dr.?William J. Schmidt - K9HZ J68HZ 8P6HK ZF2HZ PJ4/K9HZ VP5/K9HZ PJ2/K9HZ ? Owner - Operator Big Signal Ranch ¨C K9ZC Staunton, Illinois ? Owner ¨C Operator Villa Grand Piton - J68HZ Soufriere, St. Lucia W.I. Rent it: ? email:??bill@... ?
|
Re: Teensy 3.5/3.6 upgrade for uBITX
No way should anyone hate anything.? It may be an eye opener to some what can be done with a modern micro-controller.? I am glad Jack gave honorable mention to the Protoneer.? Before I ordered it last week, I came up with zero hits for Protoneer here. Thought I might be a little crazy since very sharp minds are active and voicing their opinions.? I hate to see great? software work by Ian and others be limited to choices based on the flash memory space of the Arduino Nano, which is also consumed by the boot loader.? The idea is this may help those that want a lower end "modern" 32 bit digital solution with a reasonable amount of SRAM for their uBITX with a small $ additional investment.? Even the Pi fans might find a need for a little more horsepower in the micro-controller.? Then again, I could be blown away by a pure Pi controller implementation.
I don't think any of us want to someone else to become a drooler, well at least I hope not.? From what I see here, it is enabling.? Sharing knowledge.? Albeit overwhelming at times. The dust will eventually settle from the excitement stampede unleashed by Farhan, and the path you choose will become clear.? Hopefully everyone will choose to ride along, and the world wide amateur community benefit from your participation. |
Re: Transmitter Mods
¿ªÔÆÌåÓýThanks Howard for letting us know, I¡¯ve made signal measurements at various points in the RF amplifier chain and on all the bands so that I can compare results of the mods.Skip Davis, NC9O? On Apr 23, 2018, at 17:50, Howard Fidel <sonic1@...> wrote:
|
Re: Teensy 3.5/3.6 upgrade for uBITX
¿ªÔÆÌåÓýNow that the cat is out of the bag...Dr.?William J. Schmidt - K9HZ J68HZ 8P6HK ZF2HZ PJ4/K9HZ VP5/K9HZ PJ2/K9HZ ? Owner - Operator Big Signal Ranch ¨C K9ZC Staunton, Illinois ? Owner ¨C Operator Villa Grand Piton - J68HZ Soufriere, St. Lucia W.I. Rent it: email:??bill@... ? On Apr 23, 2018, at 8:18 PM, Jack Purdum via Groups.Io <jjpurdum@...> wrote:
|
Re: KD8CEC 1.072 download
¿ªÔÆÌåÓýIm not sure you understand this completely, so ill put this more clearly. When the main sketch has the same name from version to version and you upload it to the Arduino IDE, it over-writes the previous version because it has the SAME NAME. ?Of you were to include the version number in the program name, they would not over-write.?Dr.?William J. Schmidt - K9HZ J68HZ 8P6HK ZF2HZ PJ4/K9HZ VP5/K9HZ PJ2/K9HZ ? Owner - Operator Big Signal Ranch ¨C K9ZC Staunton, Illinois ? Owner ¨C Operator Villa Grand Piton - J68HZ Soufriere, St. Lucia W.I. Rent it: email:??bill@... ? On Apr 23, 2018, at 6:56 PM, Ian Lee <kd8cec@...> wrote:
|
Re: UBITX Assemly Wiki Page
#ubitx
W7PEA
This is great Bob, what is the original file format you're working in? Can you also share that in the files section and|or also make a PNG version available? If the original version is in a format others can edit, it would be a nice jumping off point to show mods as well.? I was going to suggest dating and versioning, but you already did that... what a pro! |