camerart
Well-Known Member
Hi G,Oy, this conversation makes my head hurt just thinking about the confusion.
Me too.
C
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hi G,Oy, this conversation makes my head hurt just thinking about the confusion.
Hi K,You might want to look at: https://www.antenna-theory.com/tutorial/smith/chart.php (Smith Chart)
Hi I,You need to read this.... A vector is a line, force, thing in a direction, so its used in everything
Vector - Wikipedia
en.wikipedia.org
Piggin millions of them
Vector.. From here to there....
No!! Doesn't have to be force.... Vector drawing is just lines.... even curved lines... Vector is from point a to point b with length and angular direction, and some times via's...Hi I,
From here to there with force, is that better?
C
Hi I,No!! Doesn't have to be force.... Vector drawing is just lines.... even curved lines... Vector is from point a to point b with length and angular direction, and some times via's...
That why an interrupt on a micro is a vector... Point a to point b ( b is where the routine is )..
Some here are confused with scalar vectors, which contains scale...
Ok, thanks.Just notice that vectors are normally named... Interrupt vector... Scalar vector.. etc... best description I can give is, displacement...
Hi S,Just think of a vector in a micro as a "pointer" to a fixed address. That is, an interrupt will always trigger to a fixed address to start the interrupt code. These are usually hardwired in the micro.
For example, look at the memory map of the micro. In an example, the 16F887 datasheet, Section 2, "Memory Organization", it shows the "Interrupt Vector" to be at address 0004H. Whenever an interrupt is triggered, the PIC will jump to that address, which usually contains a "jump" instruction to your written interrupt code.
The "Reset Vector" is at 0000H, which is the power on/reset starting address, which also (usually) contains a Jump instruction to the beginning of the code.
Other micros may have several "vectors" depending on functions or other hardware features