[Discuss-gnuradio] Saving to file with a timestamp

2014-11-22 Thread Mike Willis
I have a flowgraph working that I want to use to save data to a file. I would like the file name to update each time, ideally with a time stamp as part of the name. Is this possible directly from GRC of will I need to write a block? Mike ___

Re: [Discuss-gnuradio] Saving to file with a timestamp

2014-11-22 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There's been a thread on exactly that a few days ago [1]. Short version: maybe there's something not too complex you can do in GRC, but if you want to do something that looks like a program, you might just want to program something ;) Greetings,

Re: [Discuss-gnuradio] Saving to file with a timestamp

2014-11-22 Thread Tom Rondeau
On Sat, Nov 22, 2014 at 6:15 AM, Marcus Müller mar...@hostalia.de wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There's been a thread on exactly that a few days ago [1]. Short version: maybe there's something not too complex you can do in GRC, but if you want to do something that

Re: [Discuss-gnuradio] Saving to file with a timestamp

2014-11-22 Thread Dan CaJacob
You can also use some Python string concatenation to add a Timestamp to your file name in GRC. GRC is actually quite liberal in what it will allow you to add in this way. On Saturday, November 22, 2014, Tom Rondeau t...@trondeau.com wrote: On Sat, Nov 22, 2014 at 6:15 AM, Marcus Müller

Re: [Discuss-gnuradio] Saving to file with a timestamp

2014-11-22 Thread George S. Williams
On 11/22/2014 6:04 AM, Mike Willis wrote: I have a flowgraph working that I want to use to save data to a file. I would like the file name to update each time, ideally with a time stamp as part of the name. Hey, Mike, I've used this for this same thing-