Hey, Have anyone done signal processing on TIVA C launchpad?? I want help
Signal processing on TIVA C launchpad??
Started by ●February 29, 2016
Reply by ●February 29, 20162016-02-29
On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote:> Hey, > Have anyone done signal processing on TIVA C launchpad?? I want helpWhat do you need help with that is unique to the TIVA launchpad? Which processor do you have? This is just an ARM Cortex-M4, right? -- Rick
Reply by ●March 7, 20162016-03-07
On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote:> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: > > Hey, > > Have anyone done signal processing on TIVA C launchpad?? I want help > > What do you need help with that is unique to the TIVA launchpad? Which > processor do you have? This is just an ARM Cortex-M4, right? > > -- > > RickSorry for late reply.. yes its cortex M4. I want to do DSP on that board.
Reply by ●March 7, 20162016-03-07
On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote:> On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: >> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: >>> Hey, >>> Have anyone done signal processing on TIVA C launchpad?? I want help >> >> What do you need help with that is unique to the TIVA launchpad? Which >> processor do you have? This is just an ARM Cortex-M4, right? >> >> -- >> >> Rick > > Sorry for late reply.. > yes its cortex M4. > I want to do DSP on that board.So what is stopping you? There is an app note from ARM on this and I'm sure TI has reams of info available. I expect there are libraries available that already have optimized canned routines for various signal processing functions. When the CM4 was first out I attended a presentation which covered the DSP aspects. Seems they do fairly well with tight loops in FIR filters and such. -- Rick
Reply by ●March 8, 20162016-03-08
On Monday, March 7, 2016 at 8:57:15 PM UTC+5:30, rickman wrote:> On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote: > > On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: > >> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: > >>> Hey, > >>> Have anyone done signal processing on TIVA C launchpad?? I want help > >> > >> What do you need help with that is unique to the TIVA launchpad? Which > >> processor do you have? This is just an ARM Cortex-M4, right? > >> > >> -- > >> > >> Rick > > > > Sorry for late reply.. > > yes its cortex M4. > > I want to do DSP on that board. > > So what is stopping you? There is an app note from ARM on this and I'm > sure TI has reams of info available. I expect there are libraries > available that already have optimized canned routines for various signal > processing functions. > > When the CM4 was first out I attended a presentation which covered the > DSP aspects. Seems they do fairly well with tight loops in FIR filters > and such. > > -- > > RickYeah.. I am referring info avl on ARM website, and also learning DSP concept. Can u share resources, related to filters and transforms, having some good goog examples???
Reply by ●March 8, 20162016-03-08
On 3/8/2016 8:29 AM, SHREYAS BELGAVE wrote:> On Monday, March 7, 2016 at 8:57:15 PM UTC+5:30, rickman wrote: >> On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote: >>> On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: >>>> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: >>>>> Hey, >>>>> Have anyone done signal processing on TIVA C launchpad?? I want help >>>> >>>> What do you need help with that is unique to the TIVA launchpad? Which >>>> processor do you have? This is just an ARM Cortex-M4, right? >>>> >>>> -- >>>> >>>> Rick >>> >>> Sorry for late reply.. >>> yes its cortex M4. >>> I want to do DSP on that board. >> >> So what is stopping you? There is an app note from ARM on this and I'm >> sure TI has reams of info available. I expect there are libraries >> available that already have optimized canned routines for various signal >> processing functions. >> >> When the CM4 was first out I attended a presentation which covered the >> DSP aspects. Seems they do fairly well with tight loops in FIR filters >> and such. >> >> -- >> >> Rick > > Yeah.. I am referring info avl on ARM website, and also learning DSP concept. > > Can u share resources, related to filters and transforms, having some good goog examples???Unfortunately DSP is a rather deeper subject than you can learn in a short time with google searches. I expect others here can recommend some references. I believe someone here has written a well respected book on practical DSP. I can't recall who that was, maybe Rick Lyons or maybe Eric Jacobsen. I know I keep meaning to buy the book but it never hits me at a convenient point, lol. -- Rick
Reply by ●March 8, 20162016-03-08
On Tue, 08 Mar 2016 05:29:06 -0800, SHREYAS BELGAVE wrote:> On Monday, March 7, 2016 at 8:57:15 PM UTC+5:30, rickman wrote: >> On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote: >> > On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: >> >> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: >> >>> Hey, >> >>> Have anyone done signal processing on TIVA C launchpad?? I want >> >>> help >> >> >> >> What do you need help with that is unique to the TIVA launchpad? >> >> Which processor do you have? This is just an ARM Cortex-M4, right? >> >> >> >> -- >> >> >> >> Rick >> > >> > Sorry for late reply.. >> > yes its cortex M4. >> > I want to do DSP on that board. >> >> So what is stopping you? There is an app note from ARM on this and I'm >> sure TI has reams of info available. I expect there are libraries >> available that already have optimized canned routines for various >> signal processing functions. >> >> When the CM4 was first out I attended a presentation which covered the >> DSP aspects. Seems they do fairly well with tight loops in FIR filters >> and such. >> >> -- >> >> Rick > > Yeah.. I am referring info avl on ARM website, and also learning DSP > concept. > > Can u share resources, related to filters and transforms, having some > good goog examples???"Understanding Digital Signal Processing" by Rick Lyons. Rick's a frequent contributor to this group. I have his second edition. I need to get the latest. I did feel that the second edition was a bit scant on some of the absolute most basic concepts, but there aren't any other good self-study DSP books out there that I know of, and you can always ask for clarifications here (and I could be wrong -- I was approaching it as a guy who's been doing this stuff for decades, maybe I underestimate the audience). -- www.wescottdesign.com
Reply by ●March 8, 20162016-03-08
On 3/8/2016 3:49 PM, Tim Wescott wrote:> On Tue, 08 Mar 2016 05:29:06 -0800, SHREYAS BELGAVE wrote: > >> On Monday, March 7, 2016 at 8:57:15 PM UTC+5:30, rickman wrote: >>> On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote: >>>> On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: >>>>> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: >>>>>> Hey, >>>>>> Have anyone done signal processing on TIVA C launchpad?? I want >>>>>> help >>>>> >>>>> What do you need help with that is unique to the TIVA launchpad? >>>>> Which processor do you have? This is just an ARM Cortex-M4, right? >>>>> >>>>> -- >>>>> >>>>> Rick >>>> >>>> Sorry for late reply.. >>>> yes its cortex M4. >>>> I want to do DSP on that board. >>> >>> So what is stopping you? There is an app note from ARM on this and I'm >>> sure TI has reams of info available. I expect there are libraries >>> available that already have optimized canned routines for various >>> signal processing functions. >>> >>> When the CM4 was first out I attended a presentation which covered the >>> DSP aspects. Seems they do fairly well with tight loops in FIR filters >>> and such. >>> >>> -- >>> >>> Rick >> >> Yeah.. I am referring info avl on ARM website, and also learning DSP >> concept. >> >> Can u share resources, related to filters and transforms, having some >> good goog examples??? > > "Understanding Digital Signal Processing" by Rick Lyons. Rick's a > frequent contributor to this group. > > I have his second edition. I need to get the latest. > > I did feel that the second edition was a bit scant on some of the > absolute most basic concepts, but there aren't any other good self-study > DSP books out there that I know of, and you can always ask for > clarifications here (and I could be wrong -- I was approaching it as a > guy who's been doing this stuff for decades, maybe I underestimate the > audience).I'm sure you don't... I've always found it hard to get the concepts without some discussion and getting a few questions answered, preferably without math. I remember taking a class in DSP where the teacher was all about the math. The students kept asking "What does that mean?", expressing their lack of understanding on how to relate it to the real world. It's great to be able to push the equations around, but a "feel" is required to be able to apply this stuff easily. -- Rick
Reply by ●March 8, 20162016-03-08
On Tue, 08 Mar 2016 16:41:24 -0500, rickman wrote:> On 3/8/2016 3:49 PM, Tim Wescott wrote: >> On Tue, 08 Mar 2016 05:29:06 -0800, SHREYAS BELGAVE wrote: >> >>> On Monday, March 7, 2016 at 8:57:15 PM UTC+5:30, rickman wrote: >>>> On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote: >>>>> On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: >>>>>> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: >>>>>>> Hey, >>>>>>> Have anyone done signal processing on TIVA C launchpad?? I want >>>>>>> help >>>>>> >>>>>> What do you need help with that is unique to the TIVA launchpad? >>>>>> Which processor do you have? This is just an ARM Cortex-M4, right? >>>>>> >>>>>> -- >>>>>> >>>>>> Rick >>>>> >>>>> Sorry for late reply.. >>>>> yes its cortex M4. >>>>> I want to do DSP on that board. >>>> >>>> So what is stopping you? There is an app note from ARM on this and >>>> I'm sure TI has reams of info available. I expect there are >>>> libraries available that already have optimized canned routines for >>>> various signal processing functions. >>>> >>>> When the CM4 was first out I attended a presentation which covered >>>> the DSP aspects. Seems they do fairly well with tight loops in FIR >>>> filters and such. >>>> >>>> -- >>>> >>>> Rick >>> >>> Yeah.. I am referring info avl on ARM website, and also learning DSP >>> concept. >>> >>> Can u share resources, related to filters and transforms, having some >>> good goog examples??? >> >> "Understanding Digital Signal Processing" by Rick Lyons. Rick's a >> frequent contributor to this group. >> >> I have his second edition. I need to get the latest. >> >> I did feel that the second edition was a bit scant on some of the >> absolute most basic concepts, but there aren't any other good >> self-study DSP books out there that I know of, and you can always ask >> for clarifications here (and I could be wrong -- I was approaching it >> as a guy who's been doing this stuff for decades, maybe I underestimate >> the audience). > > I'm sure you don't... I've always found it hard to get the concepts > without some discussion and getting a few questions answered, preferably > without math. I remember taking a class in DSP where the teacher was > all about the math. The students kept asking "What does that mean?", > expressing their lack of understanding on how to relate it to the real > world. It's great to be able to push the equations around, but a "feel" > is required to be able to apply this stuff easily.That's an issue. When I was learning all that stuff I was living 16 miles away from school and biking in four days a week. I'd pass the time on the road practicing making intuitive sense of the math. I'm enough of a math geek that I was willing to learn the stuff initially just because the math is pretty. -- Tim Wescott Wescott Design Services http://www.wescottdesign.com
Reply by ●March 8, 20162016-03-08
On 3/8/2016 5:24 PM, Tim Wescott wrote:> On Tue, 08 Mar 2016 16:41:24 -0500, rickman wrote: > >> On 3/8/2016 3:49 PM, Tim Wescott wrote: >>> On Tue, 08 Mar 2016 05:29:06 -0800, SHREYAS BELGAVE wrote: >>> >>>> On Monday, March 7, 2016 at 8:57:15 PM UTC+5:30, rickman wrote: >>>>> On 3/7/2016 2:39 AM, SHREYAS BELGAVE wrote: >>>>>> On Monday, February 29, 2016 at 10:30:37 AM UTC+5:30, rickman wrote: >>>>>>> On 2/28/2016 11:14 PM, SHREYAS BELGAVE wrote: >>>>>>>> Hey, >>>>>>>> Have anyone done signal processing on TIVA C launchpad?? I want >>>>>>>> help >>>>>>> >>>>>>> What do you need help with that is unique to the TIVA launchpad? >>>>>>> Which processor do you have? This is just an ARM Cortex-M4, right? >>>>>>> >>>>>>> -- >>>>>>> >>>>>>> Rick >>>>>> >>>>>> Sorry for late reply.. >>>>>> yes its cortex M4. >>>>>> I want to do DSP on that board. >>>>> >>>>> So what is stopping you? There is an app note from ARM on this and >>>>> I'm sure TI has reams of info available. I expect there are >>>>> libraries available that already have optimized canned routines for >>>>> various signal processing functions. >>>>> >>>>> When the CM4 was first out I attended a presentation which covered >>>>> the DSP aspects. Seems they do fairly well with tight loops in FIR >>>>> filters and such. >>>>> >>>>> -- >>>>> >>>>> Rick >>>> >>>> Yeah.. I am referring info avl on ARM website, and also learning DSP >>>> concept. >>>> >>>> Can u share resources, related to filters and transforms, having some >>>> good goog examples??? >>> >>> "Understanding Digital Signal Processing" by Rick Lyons. Rick's a >>> frequent contributor to this group. >>> >>> I have his second edition. I need to get the latest. >>> >>> I did feel that the second edition was a bit scant on some of the >>> absolute most basic concepts, but there aren't any other good >>> self-study DSP books out there that I know of, and you can always ask >>> for clarifications here (and I could be wrong -- I was approaching it >>> as a guy who's been doing this stuff for decades, maybe I underestimate >>> the audience). >> >> I'm sure you don't... I've always found it hard to get the concepts >> without some discussion and getting a few questions answered, preferably >> without math. I remember taking a class in DSP where the teacher was >> all about the math. The students kept asking "What does that mean?", >> expressing their lack of understanding on how to relate it to the real >> world. It's great to be able to push the equations around, but a "feel" >> is required to be able to apply this stuff easily. > > That's an issue. When I was learning all that stuff I was living 16 > miles away from school and biking in four days a week. I'd pass the time > on the road practicing making intuitive sense of the math. > > I'm enough of a math geek that I was willing to learn the stuff initially > just because the math is pretty.My loss for no biking to school. I had to get to work to apply the stuff I was learning. -- Rick






