Page 1 of 1

Can i Study at Matrix Multimedia?

Posted: Mon Apr 18, 2011 4:34 pm
by greentech
If i want to learn embedded programming is it possible that i can come to matrixmultimedia and learn it from the experts. Do you offer courses also?
Coding is wha ti am not familiar with, probably that is the reason i am finding it very hard to program a simple irda.....

If there are some courses, what is the tuition fees and course length?

Urgent Response Needed?

Re: Can i Study at Matrix Multimedia?

Posted: Tue Apr 19, 2011 9:30 am
by Steve
We do offer some training courses. Please see this page for contact information:
http://www.matrixmultimedia.com/Training.php

Re: Can i Study at Matrix Multimedia?

Posted: Tue May 17, 2011 11:04 am
by greentech
hello steve i am unable to find the contact numbers for studying at matrix.

Please guide me for the procedure of international students.
how long will the course last.

Best regards

Re: Can i Study at Matrix Multimedia?

Posted: Tue May 17, 2011 12:30 pm
by Steve
These are day-long training courses, so I don't think it would be worth coming from abroad to attend.

Re: Can i Study at Matrix Multimedia?

Posted: Tue May 17, 2011 4:54 pm
by Benj
Hello,

Our dealers sometimes arrange training in other countries. Maybe it is worth contacting a dealer in your area and seeing if they can offer you any courses or training.

boost c compiler stopped working

Posted: Thu May 26, 2011 6:23 pm
by greentech
Dear All,

I am facing a problem with boostc compiler. it was working fine few days back, but today when i compile to HEX it pops out a window saying "BOOST~C.EXE stopped working. I have checked compiler options, and restored them to defaults, but invain"

can u give me a clue whats wrong with it?


Regards

Re: Can i Study at Matrix Multimedia?

Posted: Thu May 26, 2011 7:20 pm
by Spanish_dude
Have you tried uninstalling and reinstalling Flowcode ?

Re: Can i Study at Matrix Multimedia?

Posted: Thu May 26, 2011 8:56 pm
by greentech
yes but it didnt help.

Re: Can i Study at Matrix Multimedia?

Posted: Thu May 26, 2011 9:14 pm
by medelec35
Have you got a firewall like comodo which could halt processes that have not been assigned to trusted applications.
If you are using Comodo, try running Flowcode, with comodo in Training mode for both Firewall and Defense security levels.
Or
It could be caused by boostC being halted by an antivirus.
See:
http://www.matrixmultimedia.com/support ... 9ccbe90b1b

Of course it could be none of the above, but anything is worth a try?

Martin

Re: Can i Study at Matrix Multimedia?

Posted: Tue May 31, 2011 10:48 pm
by greentech
i have reinstalled windows and flowcode its working now......:)

laser distance meter

Posted: Wed Jun 01, 2011 4:58 pm
by greentech
Hi,

I am trying to flow code laser distance meter. where should i begin this......can u give me some idea?

regards

Re: Can i Study at Matrix Multimedia?

Posted: Wed Jun 01, 2011 5:52 pm
by Benj
Hello,

Your best bet is to find a reference project online. If its easy and its possible then you should find a project without much searching that will give some example components maybe with a schematic and some source code.

When i'm searching for things in Google I normally use the following types of keywords.

Project
Source Code
Reference
Schematic
PIC
AVR

eg.

laser distance project schematic PIC

seems to bring up some fairly relevant pages.

Re: Can i Study at Matrix Multimedia?

Posted: Wed Jun 01, 2011 8:50 pm
by greentech
Thanks benj ill try that

calculation error

Posted: Sun Jun 05, 2011 11:45 am
by greentech
Hello there,

I have defined three float vars

time=1,000,000
c= 299.792458
d=0

i have then calculated this

d= C*Time and it gives me the wrong answer (5084480.087680)......

can u tell me where i am wrong. The answer should be 299792458.....

Re: Can i Study at Matrix Multimedia?

Posted: Sun Jun 05, 2011 1:13 pm
by JohnCrow
Hi greentech
Just put a quick program together
Try the attached flowchart
It works here in simulation, though not tried it on hardware
calculation.fcf
(5.5 KiB) Downloaded 257 times

Re: Can i Study at Matrix Multimedia?

Posted: Sun Jun 05, 2011 9:22 pm
by greentech
this is what it displays on real hardware. {30816.//////}
em confused.

Re: Can i Study at Matrix Multimedia?

Posted: Sun Jun 05, 2011 11:47 pm
by medelec35
greentech wrote:this is what it displays on real hardware. {30816.//////}
em confused.
The calculation is correct, I confirmed that with ICD mode on.
To me it looks like a bug with conversion of float to string.
I believe what John posted is correct.
Unless I'm missing something obvious?

martin

Re: Can i Study at Matrix Multimedia?

Posted: Mon Jun 06, 2011 6:06 am
by greentech
what to do now. can i fix this error somehow? it works in the simulation alright, but on real hardware its confusing me.

best regards.

Re: Can i Study at Matrix Multimedia?

Posted: Mon Jun 06, 2011 6:40 am
by greentech
float d = 299792458
divided by 1000000000000

it gives me the answer 0.000300

whereas it should be 0.000299792458

whats going wrong?

Re: Can i Study at Matrix Multimedia?

Posted: Mon Jun 06, 2011 10:37 am
by Benj
Hello,

I'm guessing your doing these large calculations on an 8-bit device. In which case the functions to handle these numbers may introduce rounding or other simplification which is probably what you are seeing. Maybe a 16-bit PIC or an ARM would be better suited to these large calculations. Otherwise is there a way to change the maths so that you are not dealing with numbers that are so large or small.