Extra Note: At 26:33 instead of creating a software flag variable, you can just disable the enable bit of that interrupt and directly check the flag bit in your code without any interrupts (this is exactly the reason why flag bits set regardless of their enable bits; it's so you can poll the interrupt flags). You only need to create software flags if you need a part of your code executed asap in the interrupt routine, while some parts can tolerate being delayed.
@dualxsurvival1552 жыл бұрын
2 hours of sleep 12 hours of self taught half understood frankin code. Due today. You just saved 20% of my grade you beautiful bastard.
@rutexas7157 Жыл бұрын
You are awesome! Crystal clear explanation!
@pankajkumarpatel2586Ай бұрын
very good video and explain in technical with help of datasheet
@MicroesqueАй бұрын
Thanks 👍
@alejandrobanolescobar61602 жыл бұрын
Thank You Man, a very useful vídeo
@Bretto311 Жыл бұрын
Awesome video series, I hope you continue to make more PIC programming videos!
@Microesque Жыл бұрын
Thanks👍I'm currently uploading for the debugging series, and there's only one more video left. After that, I'll continue on with this one again.
@bartoszjozwicki4541 Жыл бұрын
That is a very well explained tutorial, amazing work!
@Microesque Жыл бұрын
Thanks 👍
@smecmanca Жыл бұрын
Great explanation. Saluti from Italia
@fifaham6 ай бұрын
@27:07 I believe this will reduce power consumption and decrease the latency period for the ISR mechanism to respond to an external request - because of how IRQ works.
@Microesque6 ай бұрын
That depends. Most of the time, efficiency won't change since you'll enter and leave the interrupt routines the same number of times. Power consumption would only reduce if you also utilized low-power modes along with interrupts. As an extra note: Jumping to the interrupt routine takes 3-4 instructions. Checking which interrupt routine has been fired also takes many instructions. If you're using two interrupt routines at the same time, that also adds a bunch of instructions since there's only one set of "shadow registers" for this microcontroller. So technically, depending on the application, interrupts may even reduce the efficiency.
@tedbastwock38108 ай бұрын
AMAZING content, thank you !!! 🙏
@Microesque8 ай бұрын
Thanks 👍
@herrjonatan54362 жыл бұрын
THANKS MAN
@ellerycadel Жыл бұрын
Awesome tutorials! Do you have the config bits somewhere? I can't get the first example to work - it is not blinking at all.
@Microesque Жыл бұрын
Whoops... I should've included that too, my bad. It's the same config file I've been using in the series. I'll update the description shortly.
@ellerycadel Жыл бұрын
@@Microesque Thank you so much! All of these tutorials have been great! You are explaining everything so well and in great detail!!!
@Microesque Жыл бұрын
@@ellerycadel Thanks 👍
@badalnishant92038 ай бұрын
What a nice explaination you have done, do you have any other courses on advanced emebdded system. pls share .
@Microesque8 ай бұрын
Thanks 👍I don't have any courses or anything like that. This is kind of like a hobby I do for fun.
@kakashiroshi4402 жыл бұрын
Great explanation, but dark theme made it hard to see.