Re: [AFMUG] OT Hello World

2018-02-09 Thread chuck
I will use a GPS disciplined reference signal to gate the actual timing pulse stream. It is inserting the correct F bit every 193 bits that is the trick. From: Forrest Christian (List Account) Sent: Friday, February 9, 2018 10:23 AM To: af Subject: Re: [AFMUG] OT Hello World gcc -o output

Re: [AFMUG] OT Hello World

2018-02-09 Thread Dave
Im with chuck on this one. Working in an IDE is so much simpler than worrying about if I have all the libraries and the correct engine to compile all this done when the ide is opened.  However I do alot in linux and so long as you as you can do an install of the make application then linux os

Re: [AFMUG] OT Hello World

2018-02-09 Thread Robert
depressed.  ) From: Bill Prince Sent: Friday, February 9, 2018 9:36 AM To: af@afmug.com <mailto:af@afmug.com> Subject: Re: [AFMUG] OT Hello World A make file is just a list of dependencies, and what to do if the dependency is met. Sort of:  "If hello.c is newer

Re: [AFMUG] OT Hello World

2018-02-09 Thread Forrest Christian (List Account)
where do you put the key in this car. > > (there used to be a car that you turned the key on, then floored the > accelerator. The starter button was part of the gas pedal and would not > engage unless it was fully depressed. ) > > > From: Bill Prince > Sent: Friday, Feb

Re: [AFMUG] OT Hello World

2018-02-09 Thread Bill Prince
be a car that you turned the key on, then floored the accelerator.  The starter button was part of the gas pedal and would not engage unless it was fully depressed.  ) From: Bill Prince Sent: Friday, February 9, 2018 9:36 AM To: af@afmug.com Subject: Re: [AFMUG] OT Hello World A make file is just

Re: [AFMUG] OT Hello World

2018-02-09 Thread Bill Prince
ut the key in this car. (there used to be a car that you turned the key on, then floored the accelerator.  The starter button was part of the gas pedal and would not engage unless it was fully depressed.  ) From: Bill Prince Sent: Friday, February 9, 2018 9:36 AM To: af@afmug.com Subject: Re:

Re: [AFMUG] OT Hello World

2018-02-09 Thread chuck
Prince Sent: Friday, February 9, 2018 9:36 AM To: af@afmug.com Subject: Re: [AFMUG] OT Hello World A make file is just a list of dependencies, and what to do if the dependency is met. Sort of: "If hello.c is newer than hello, then compile it". It can be as simple as that, but can get a

Re: [AFMUG] OT Hello World

2018-02-09 Thread Bill Prince
A make file is just a list of dependencies, and what to do if the dependency is met. Sort of:  "If hello.c is newer than hello, then compile it". It can be as simple as that, but can get a whole lot more complicated if there are libraries and such. However, in the simple case of your hello.c, I

Re: [AFMUG] OT Hello World

2018-02-09 Thread Lewis Bergman
rduino > barely makes it but with too much jitter. Pi is not that much more money > and way faster. > > *From:* Lewis Bergman > *Sent:* Friday, February 9, 2018 8:16 AM > *To:* af@afmug.com > *Subject:* Re: [AFMUG] OT Hello World > I don't know what you are trying to do

Re: [AFMUG] OT Hello World

2018-02-09 Thread chuck
AM To: af@afmug.com Subject: Re: [AFMUG] OT Hello World I don't know what you are trying to do with the Raspberry Pi but maybe it isn't the right tool. I love it, it just isn't for everything. The Arduino or ESP32 is better for analog anything and usually sensors. I would also tel

Re: [AFMUG] OT Hello World

2018-02-09 Thread chuck
It appears gcc got loaded as part of the NOOBs package I put on the machine. -Original Message- From: Robert Sent: Friday, February 9, 2018 8:13 AM To: af@afmug.com Subject: Re: [AFMUG] OT Hello World I am guessing here, but it sounds like you need the make program and gcc? i.e

Re: [AFMUG] OT Hello World

2018-02-09 Thread Lewis Bergman
I don't know what you are trying to do with the Raspberry Pi but maybe it isn't the right tool. I love it, it just isn't for everything. The Arduino or ESP32 is better for analog anything and usually sensors. I would also tell you that you may want to look at using Python with the Pi. Tons of libra

Re: [AFMUG] OT Hello World

2018-02-09 Thread Robert
I am guessing here, but it sounds like you need the make program and gcc? i.e. "sudo apt-get make" and "sudo apt-get gcc" ??? Make files can just be in the same directory as the source file, pretty much everything you work on can be in the same directory. On 2/9/18 6:51 AM, ch...@wbmfg.com

[AFMUG] OT Hello World

2018-02-09 Thread chuck
I hate make files. I love IDEs. Bought a raspberry PI and am playing with it a bit. So far I really like it. Started to write a program using a Geaney editor. Nice editor. Hit the make button and I discovered it is really just a shell, that you have to have a gcc make somewhere. So, not b