DSPRelated.com
Forums

Looking for Teachers of DSP

Started by Webmaster April 25, 2006
I am creating a new discussion group for teachers of signal processing. The
goal is to bring together as many (D)SP teachers as possible so if they
wish, they can exchange all kind of useful information, like for instance
which book(s) they use to teach their class, their favorite web sites,
matlab tutorials, labs, etc.

I am requesting your help today to help me build a list of teachers that I
will contact personally to announce the creation of the discussion group and
invite them to join.

If you know one or several teacher(s) of SP and/or DSP, simply reply to this
message with the info (university, name, email) or even better, use this
simple form I have created:
http://www.dsprelated.com/teachers.php

On this form, you are also very welcomed to follow a link to any EE
university web site and see if you can find who is giving the (digital)
signal processing course. It is often possible to find this info but I must
admit it is a time consuming task and would take me very long to go over the
full list... So if you have a few minutes, just pick a university, visit
their EE section and see if you can find the individual(s) teaching the
(D)SP course(s).

I appreciate your help!

Thanks.

Stephane Boucher
w...@dsprelated.com
Hi everyone
I am working on C5416 and I know this is a C6x site, but my error is a very common error and I am just wondering if anyone can help on this group.
I am running my code on PEP5416 and am using sdpep5416.gel. Th error I am getting is:
Can't Remove Breakpoint at 0x3000: Error 0x00000008/-1076 Error during: Break Point, Cannot set/verify breakpoint at 0x00003000 Sequence ID: 8 Error Code: -1076 Error Class: 0x00000008
My main program [main()] is starting at addr 0x3000. What I am doing is, I am building and loading my code and after that I am clicking Go Main. I understand that when I click Go Main, a breakpoint is set at main() internally. but I dont understand why I am facing this error.
When I run my code on simulator with c5416sim.gel, I dont get any error, I get it when I run it on the device.
If anyone has ever faced this error and if anyone has any kind of solution or suggestion for this, kindly help.
Waiting for a reply
Thanking You
Megha Daga
The gel file conatins the board/device specific initialization routine like
memory map initialization, EMIF settings etc.
refer to the data sheet of board/device to get the correct setting for your
device and use your customized gel file.
you don't get the error in simulator, because simulator does not simulates
all the external peripherals.

On 4/26/06, megha daga wrote:
>
> Hi everyone
> I am working on C5416 and I know this is a C6x site, but my error is a
> very common error and I am just wondering if anyone can help on this group.
> I am running my code on PEP5416 and am using sdpep5416.gel. Th error I am
> getting is:
> Can't Remove Breakpoint at 0x3000: Error 0x00000008/-1076 Error during:
> Break Point, Cannot set/verify breakpoint at 0x00003000 Sequence ID: 8
> Error Code: -1076 Error Class: 0x00000008
> My main program [main()] is starting at addr 0x3000. What I am doing is, I
> am building and loading my code and after that I am clicking Go Main. I
> understand that when I click Go Main, a breakpoint is set at main()
> internally. but I dont understand why I am facing this error.
> When I run my code on simulator with c5416sim.gel, I dont get any error, I
> get it when I run it on the device.
> If anyone has ever faced this error and if anyone has any kind of solution
> or suggestion for this, kindly help.
> Waiting for a reply
> Thanking You
> Megha Daga
--
Regards
Sri
Megha,

--- megha daga wrote:

> Hi everyone
> I am working on C5416 and I know this is a C6x site,
> but my error is a very common error and I am just
> wondering if anyone can help on this group.
> I am running my code on PEP5416 and am using
> sdpep5416.gel. Th error I am getting is:
> Can't Remove Breakpoint at 0x3000: Error
> 0x00000008/-1076 Error during: Break Point, Cannot
> set/verify breakpoint at 0x00003000 Sequence ID: 8
> Error Code: -1076 Error Class: 0x00000008
Normally setting a software breakpoint involves
reading a memory location and writing back a
'breakpoint opcode' [note: the emulation driver code
and the specific hardware support is slightly
different between c6x and c54x devices] to the same
location. The processor runs to the breakpoint, the
original code is restored, and then the information is
displayed by CCS. When you have a problem such as
yours, the first thing to do is to open a memory
window and try to modify the contents [try several
differnt patterns]. If this fails, you have some sort
of memory read/write problem. If everything works,
try manually setting a hardware breakpoint at the
address [if the 54x supports it].

mikedunn
> My main program [main()] is starting at addr 0x3000.
> What I am doing is, I am building and loading my
> code and after that I am clicking Go Main. I
> understand that when I click Go Main, a breakpoint
> is set at main() internally. but I dont understand
> why I am facing this error.
> When I run my code on simulator with c5416sim.gel, I
> dont get any error, I get it when I run it on the
> device.
> If anyone has ever faced this error and if anyone
> has any kind of solution or suggestion for this,
> kindly help.
> Waiting for a reply
> Thanking You
> Megha Daga
>
> c...
>
>
>
hey everyone
thanks fro replying. well my problem is solved. It was some kind of loading problem of GEL file. I uninstalle dan dreinstalled my software and then after setting th econfiguration in Startup of CCS, I again loaded the GEl file in my CCS menu. After reloading the GEL file it was solved.
Thanks
Megha

Mike Dunn wrote:
Megha,

--- megha daga wrote:

> Hi everyone
> I am working on C5416 and I know this is a C6x site,
> but my error is a very common error and I am just
> wondering if anyone can help on this group.
> I am running my code on PEP5416 and am using
> sdpep5416.gel. Th error I am getting is:
> Can't Remove Breakpoint at 0x3000: Error
> 0x00000008/-1076 Error during: Break Point, Cannot
> set/verify breakpoint at 0x00003000 Sequence ID: 8
> Error Code: -1076 Error Class: 0x00000008
Normally setting a software breakpoint involves
reading a memory location and writing back a
'breakpoint opcode' [note: the emulation driver code
and the specific hardware support is slightly
different between c6x and c54x devices] to the same
location. The processor runs to the breakpoint, the
original code is restored, and then the information is
displayed by CCS. When you have a problem such as
yours, the first thing to do is to open a memory
window and try to modify the contents [try several
differnt patterns]. If this fails, you have some sort
of memory read/write problem. If everything works,
try manually setting a hardware breakpoint at the
address [if the 54x supports it].

mikedunn
> My main program [main()] is starting at addr 0x3000.
> What I am doing is, I am building and loading my
> code and after that I am clicking Go Main. I
> understand that when I click Go Main, a breakpoint
> is set at main() internally. but I dont understand
> why I am facing this error.
> When I run my code on simulator with c5416sim.gel, I
> dont get any error, I get it when I run it on the
> device.
> If anyone has ever faced this error and if anyone
> has any kind of solution or suggestion for this,
> kindly help.
> Waiting for a reply
> Thanking You
> Megha Daga
>
> c...
>

---------------------------------
How low will we go? Check out Yahoo! Messengers low PC-to-Phone call rates.
Hello experts,

I am assigned to do a project on "Optimal Character Recognition" (OCR) using C6713 DSK. Since it is a new topic for me, can any one tell me where can I start and what should I know (i.e. what algorithm) to do this project? The goal is to convert the scanned document to ASCII code. Any help will be greatey appreciated.

Haidar

---------------------------------
How low will we go? Check out Yahoo! Messengers low PC-to-Phone call rates.
Hi,

one last call for your help. I now have a list of 106 DSP teachers to
contact out of an estimate of more than 600. Thank you to those who helped
me get there. But I'd like to bring this number to at least 200 before I do
send the invitations to join the discussion group created exclusively for
DSP teachers.

So if you find a couple of minutes today, I would appreciate if you could
visit http://www.dsprelated.com/teachers.php and add the contact info for
one DSP teacher (or more).

Very often, it is possible to find who is teaching the DSP class by visiting
the web site of a given university. I found that most of the time, I find
this info by following the "faculty" link or the "courses" link. Sometimes
I have to look at the syllabus of the DSP course, or look at the teaching
section of the professors. But most of the time, the info is there
somewhere... It would take me days to accomplish this alone, while with
your help, it could go much much faster.

Again, I appreciate your time.

Stephane Boucher
w...@dsprelated.com

----- Original Message -----
From: "Webmaster"
To: ; ; ;
; ;
Sent: Tuesday, April 25, 2006 1:43 PM
Subject: [c54x] Looking for Teachers of DSP
>I am creating a new discussion group for teachers of signal processing.
>The
> goal is to bring together as many (D)SP teachers as possible so if they
> wish, they can exchange all kind of useful information, like for instance
> which book(s) they use to teach their class, their favorite web sites,
> matlab tutorials, labs, etc.
>
> I am requesting your help today to help me build a list of teachers that I
> will contact personally to announce the creation of the discussion group
> and
> invite them to join.
>
> If you know one or several teacher(s) of SP and/or DSP, simply reply to
> this
> message with the info (university, name, email) or even better, use this
> simple form I have created:
> http://www.dsprelated.com/teachers.php
>
> On this form, you are also very welcomed to follow a link to any EE
> university web site and see if you can find who is giving the (digital)
> signal processing course. It is often possible to find this info but I
> must
> admit it is a time consuming task and would take me very long to go over
> the
> full list... So if you have a few minutes, just pick a university, visit
> their EE section and see if you can find the individual(s) teaching the
> (D)SP course(s).
>
> I appreciate your help!
>
> Thanks.
>
> Stephane Boucher
> w...@dsprelated.com
Hello every one,
I previousely posted a question about how to implement an OCR (Optical Character Recognition) system, Now I found out that I can do it with MATLAB easily, but can any one tell me if I can somehow use my C6713 board in order to implement this project. As far as I have found, there is no binary input/output in C6713, so I am wondering how I can input a binary converted image to the board and process it and then take the output! can any one tell me if it is possible and how?

Thank you

---------------------------------
Yahoo! Mail goes everywhere you do. Get it on your phone.