Keep making videos bro. This is one of those rare videos on youtube where a dude explains everything in a "grounds-up". This manner of explanation leaves no holes in understanding and encouraged me to review your video over and over. Keep it up!!
I’ve been using a personal project as an opportunity to learn about Arduinos and the whole design process. Thought I had it all figured out until I tried to transition to the ATTiny85 and was quickly humbled. Your videos are providing the bridge to microcontrollers that I had no idea I needed and I cannot say enough how much I appreciate all of your work. It goes without saying that this step up in understanding is likely what stops most of us from going further with our projects so I can’t imagine how many doors you’ve opened for people. Thank you.
This is basically a full explanation that’s bridging the gap in my knowledge between circuits and computer programs. I want to let you know how valuable this is to me and, I’m sure, to other people. Thank you for making this.
i think its coz no one will understand what the title of the video even means, i came here after watching his recent "beyond arduino" video. And thank god did i watch that video haha, and thank god that i came here :D
The title is a bit obscure. Also SparkFun has a couple of videos on Atmega328 registers/ports that are quite good. Still he does a good job of explaining and chunking it and deserves all the best for his efforts.
This was really neat! Been looking for videos that explain how to do this kinda thing for a while now and this was by far the best one, can't wait to watch the rest!
Great presentation and in depth analysis of the necessary elements to understand bare metal programming. Been looking for something to jumpstart my understanding with avr bare metal programming. Even if you applied it for STM32, it's so concise it could be applied to any MCU with the proper study of the datasheet. Well done.
I have just started watching this series and am enjoying it. I have been playing with the ESP32 using micropython mainly and have always been curious about digging in deeper. Great Job!
Hey Mitch. Just stumbled accross this series and have to say... absolutely the fkn best tutorial on AVR micros I have seen so far. In fact I'd put you up there with Ben Eater! Please, please please, do another series with new 1 Series of Attiny family, particularly the '412 which is the new '85. I have learned so much from your '85 videos, I'm literally begging you to do a 412 playlist.
For the Port B segment, might be worth showing where Port B is defined. I can't seem to find it in the headers. I'm told from a Google Search that this is in the avr tool-chain. I would imagine that it's defined with the volatile keyword to tell the compiler that the reads or writes to this value will have side effects not seen by the C code directly and thus can not be optimized out. For the Delay segment, might be worth mentioning that the clock speed is the driver of how fast the system runs. A single instruction takes at least one CPU cycle to complete and is your overall system budget on how many instructions you can do in any given second. With that in mind, a write to a variable takes 1 instruction, a read to a variable that is in the CPU register takes 1 instruction. With the STM8 running at 8MHz it can process 8,000,000 instructions in a given second. The for loop itself is setup (long i = 0) at the setup of the loop and for the purposes of this discussion is meaningless. (1 / 8,000,000 of a second). The execution of the code takes 1 instruction (PORTB = 0), the check takes one instruction (i < 1_000_000), and the increment takes one instruction (i++). One iteration of the loop cycle actually takes 3 instructions, and so each for loop is costing 3,000,001 cycles. The delay it's causing is actually around 3/8th of a second or 375 milliseconds and that is why it's blinking faster than the previous example.
12:37 He wanted to make it a a BIT longer; however, could not because he wanted to keep it in a BYTE size format. So so so good, how to do you keep a straight face with golden tech puns like that............subscribed (not just for the pun, but it was icing on the cake)
The hardest parts of these videos are deciding what NOT to talk about. Timers and interrupts are more of an intermediate topic that I didn’t want to spend time on quite yet. I ended up doing a video on timers (for STM32) eventually, and it actually ended up taking quite a bit longer than I was expecting
also a program that uses pinMode(), digitalWrite() and delay() takes 1536 bytes of flash and 9 bytes of RAM on my Mega2560, whereas a simple bitwise op function and _delay_ms() from AVR API takes only 304 bytes of flash and 0 bytes of RAM - meaning 5x times memory optimization. So yeah Arduino SDK functions are fine for prototyping, but optimizing for specific MCU pays off by a lot.
What is this digitalWrite() function for?! SBR PORTA, #0; turn on , CBR PRTA, #0; turn off - there are two base operations. Or in the C language: PORTA |=0x01; PORTA &= 0xFE
Perhaps the port version is only faster because you are setting it equal, but in digit write it is probably doing the |= operator to set and &= to unset the bit, thus requiring more instructions.
I understand the niche of starting at the bottom level in understanding the ATMEGA chips and the Arduino environment - looking under the hood to explain registers, machine code, assembly, and C/C+. And learning to bypass the Arduino libraries at times. Kudos. There is value in that. But what is the reason for aiming to eventually transitioning to the STM8? I could see why someone aiming for large scale manufacturing might want to use the cheapest uC which can handle their task, and the ATMEGA line often isn't that. But for a hobbiest, what advantage is there to (eventually) transitioning to another low level uC with similar capabilities, using a different toolchain and ecosystem to learn? Consider by contrast, say, planning transitioning to the STM32 line, which has some advantages in handling some tasks which the ATMEGA cannot. One option in this case would be using the Arduino ecosystem retargeted for the STM32, so reducing the new learning curve once one is familiar with the ATMEGA (eg: using the Blue Pill devices). Anyway, good presentation. If you wish to share the reasoning behind the intended direction of this series, that would be cool.
@@MitchDavis2 OK, good luck! It's good to see a different approach, starting from the low level and working up. Of course, the other approaches have their value too, but people differ in how they learn best, and in what they are trying to accomplish. I'm pretty familiar with the basics you are covering (my first microcomputer was an IMSAI 8800 and you could use front panel toggle switches to manually enter one byte at a time of machine code, for the boot code!). But I can well imagine that it would be very useful for some beginners. I'll try to check back later and see how this effort matures and what you do next. Kudos!
Correction: The hardware registers used by the Arduino Uno are located on-chip, separate from both RAM and ROM. These registers are used to control the behavior of the microcontroller, including setting pin directions, configuring timers and interrupts, and controlling various peripherals such as the analog-to-digital converter and serial communication ports.
This is great! I already learned this stuff in a course at the university a few years ago, but needed a refresher. I always felt that the arduino coding is making things dumber rather than easier. And every time i start working with arduino i feel like im relearning bad habits lol. The easy accessability and price of arduinos is great but why cant we all just learn to code like this?
Thanks for a very understandable video. Is there a way to enter the port value in binary? IE portb=00100000 instead of portb=32? It would be easier to program multi led blink patterns this way.
i like this kind of video its low level programming we can understand how mcu working under the hood and our ticket for understand mcu third partly library works
This is super helpful. I am trying to learn this but I am confused with the software which needs to be installed. I own a windows laptop - I have installed WINAVR and AVR DUDE. So i write my code on VS CODE, then I am to use a win-avr to compile it?
You can use whatever you want. When it goes to the compiler, it's just a number. More commonly, you write something like (1>>5), which means "the 5th bit is a 1". I cover bit shifting in a later video.
@@whyaretheseathing arduino uses a 2-byte int. Honestly, most of the time I program using explicit variables, such as “uint16_t” when I want a 2 byte number, and “uint32_t” when I want a 32 bit number. That spares us from the ambiguity of “int”
It's worth pointing out that writing to the whole port to change one bit is bad programming. The code below is a better approach, albeit with magic numbers. I left them in so it matched the program in the video, but defining bit 5 with a sensible name such as LED_Pin and using 1
Part of this series is breaking down code and avoiding anything that uses the Arduino framework. This is entirely for educational purposes to show what’s going on under the hood. Millis() is Arduino code to get the number of milliseconds from the start of the program
Keep making videos bro. This is one of those rare videos on youtube where a dude explains everything in a "grounds-up". This manner of explanation leaves no holes in understanding and encouraged me to review your video over and over. Keep it up!!
I like programming as close to the metal as possible. GOOD JOB showing this and illustrating why this is superior.
I’ve been using a personal project as an opportunity to learn about Arduinos and the whole design process. Thought I had it all figured out until I tried to transition to the ATTiny85 and was quickly humbled.
Your videos are providing the bridge to microcontrollers that I had no idea I needed and I cannot say enough how much I appreciate all of your work. It goes without saying that this step up in understanding is likely what stops most of us from going further with our projects so I can’t imagine how many doors you’ve opened for people. Thank you.
I've watched a ton of git manipulation/register videos lately and this is by FAR the best I have seen. Watch it and save it.
Criminally underrated channel this is ☝️🙂Keep up the good work ❤
We loved this tutorial so much we featured it in this week's Electromaker show!
This is basically a full explanation that’s bridging the gap in my knowledge between circuits and computer programs. I want to let you know how valuable this is to me and, I’m sure, to other people. Thank you for making this.
I dont understand how this series has such low views... Those Videos taught me so much!
Thanks for that dude!
i think its coz no one will understand what the title of the video even means, i came here after watching his recent "beyond arduino" video. And thank god did i watch that video haha, and thank god that i came here :D
The title is a bit obscure. Also SparkFun has a couple of videos on Atmega328 registers/ports that are quite good. Still he does a good job of explaining and chunking it and deserves all the best for his efforts.
Thx Mitch! I was looking for some Ben Eater style videos about understanding microcontrollers. I think I've found it!
Dude you make so much sense when you explain things!
This was really neat! Been looking for videos that explain how to do this kinda thing for a while now and this was by far the best one, can't wait to watch the rest!
Great presentation and in depth analysis of the necessary elements to understand bare metal programming. Been looking for something to jumpstart my understanding with avr bare metal programming. Even if you applied it for STM32, it's so concise it could be applied to any MCU with the proper study of the datasheet. Well done.
Man, you're killing it.
Saved the playlist. Your explanations are super crystal clear. Thanks
this guy knows alot, thank you for this amazing information and please continue sharing it
The best explanation I've ever seen , you are best!
I have just started watching this series and am enjoying it. I have been playing with the ESP32 using micropython mainly and have always been curious about digging in deeper. Great Job!
The best video about this on the internet sofar! You are really didactical! Thanks you!
This is high quality stuff Mitch! Thanks for bringing it to us... (rushing away to try the blink example myself)
Thank you, exactly what I needed. Very well explained!
Excellent video. Very specific to registers and very watchable.
You are SO the best of the best. Perfect explanations
Hey Mitch. Just stumbled accross this series and have to say... absolutely the fkn best tutorial on AVR micros I have seen so far. In fact I'd put you up there with Ben Eater! Please, please please, do another series with new 1 Series of Attiny family, particularly the '412 which is the new '85. I have learned so much from your '85 videos, I'm literally begging you to do a 412 playlist.
thanks for this tutorial it teaches people how to do it in the right way
For the Port B segment, might be worth showing where Port B is defined. I can't seem to find it in the headers. I'm told from a Google Search that this is in the avr tool-chain. I would imagine that it's defined with the volatile keyword to tell the compiler that the reads or writes to this value will have side effects not seen by the C code directly and thus can not be optimized out.
For the Delay segment, might be worth mentioning that the clock speed is the driver of how fast the system runs. A single instruction takes at least one CPU cycle to complete and is your overall system budget on how many instructions you can do in any given second. With that in mind, a write to a variable takes 1 instruction, a read to a variable that is in the CPU register takes 1 instruction. With the STM8 running at 8MHz it can process 8,000,000 instructions in a given second. The for loop itself is setup (long i = 0) at the setup of the loop and for the purposes of this discussion is meaningless. (1 / 8,000,000 of a second). The execution of the code takes 1 instruction (PORTB = 0), the check takes one instruction (i < 1_000_000), and the increment takes one instruction (i++). One iteration of the loop cycle actually takes 3 instructions, and so each for loop is costing 3,000,001 cycles. The delay it's causing is actually around 3/8th of a second or 375 milliseconds and that is why it's blinking faster than the previous example.
i love this video, it's help me can understand a lot of the information behind the function already have in Arduino. Thanks for this video
This was really easy to understand, well done and thank you for making these videos!
Wow, 18x faster with direct access ?? That's an enormous improvement, I shall do that going forward. These videos are really great .
12:37
He wanted to make it a a BIT longer; however, could not because he wanted to keep it in a BYTE size format.
So so so good, how to do you keep a straight face with golden tech puns like that............subscribed (not just for the pun, but it was icing on the cake)
Pbbbttttt. That’s because I had no idea I did that until you just pointed it out
Thanks for the video 👍 Trying to learn bare metal with no previous microcontroller experience
Thank you for such detailed information on these avr microcontroller. Excellent content and video quality
nice work bro. hats off to you.
This vídeo is amazing man!
Great job, I am really enjoying this series
Giving me a deep review of AVR controller, thank you
Great videos!!!
Thanx for your time and effort!!!
Big show, good job, subscribed and like 1.6K full 😉👍
excellent explanation
Thank you very much, Mitch, awesome, very informative videos!
Brilliant video well explained and it works !
Hi Mitch, i just want to thank you for helping me out with this video. Well done! I am now able to write the right code for my project :-)
For part around 10:40, you might be able to fool the compiler by including semicolon “;” in your for loop.
This is realy realy good example, love it. Maybe I'll be able to do it now, 6 us static output loop. Thank you :-3
good up to the point of delay function. NOP loops are not the way to go, missed opportunity to talk about timers and interrupts
The hardest parts of these videos are deciding what NOT to talk about. Timers and interrupts are more of an intermediate topic that I didn’t want to spend time on quite yet. I ended up doing a video on timers (for STM32) eventually, and it actually ended up taking quite a bit longer than I was expecting
@@MitchDavis2 valid points 👍🏻 im enjoying your videos so far, hope you'll come up with more!
also a program that uses pinMode(), digitalWrite() and delay() takes 1536 bytes of flash and 9 bytes of RAM on my Mega2560, whereas a simple bitwise op function and _delay_ms() from AVR API takes only 304 bytes of flash and 0 bytes of RAM - meaning 5x times memory optimization. So yeah Arduino SDK functions are fine for prototyping, but optimizing for specific MCU pays off by a lot.
Excellent content ie., Oscilloscope waves (high level vs low level port assessing ) 18x faster than high level
Thank you
This is great!
What is this digitalWrite() function for?! SBR PORTA, #0; turn on , CBR PRTA, #0; turn off - there are two base operations. Or in the C language: PORTA |=0x01; PORTA &= 0xFE
Perhaps the port version is only faster because you are setting it equal, but in digit write it is probably doing the |= operator to set and &= to unset the bit, thus requiring more instructions.
I understand the niche of starting at the bottom level in understanding the ATMEGA chips and the Arduino environment - looking under the hood to explain registers, machine code, assembly, and C/C+. And learning to bypass the Arduino libraries at times. Kudos. There is value in that.
But what is the reason for aiming to eventually transitioning to the STM8?
I could see why someone aiming for large scale manufacturing might want to use the cheapest uC which can handle their task, and the ATMEGA line often isn't that. But for a hobbiest, what advantage is there to (eventually) transitioning to another low level uC with similar capabilities, using a different toolchain and ecosystem to learn?
Consider by contrast, say, planning transitioning to the STM32 line, which has some advantages in handling some tasks which the ATMEGA cannot. One option in this case would be using the Arduino ecosystem retargeted for the STM32, so reducing the new learning curve once one is familiar with the ATMEGA (eg: using the Blue Pill devices).
Anyway, good presentation. If you wish to share the reasoning behind the intended direction of this series, that would be cool.
@@MitchDavis2 OK, good luck!
It's good to see a different approach, starting from the low level and working up. Of course, the other approaches have their value too, but people differ in how they learn best, and in what they are trying to accomplish.
I'm pretty familiar with the basics you are covering (my first microcomputer was an IMSAI 8800 and you could use front panel toggle switches to manually enter one byte at a time of machine code, for the boot code!). But I can well imagine that it would be very useful for some beginners.
I'll try to check back later and see how this effort matures and what you do next.
Kudos!
Amazing video, thank you very much!!
this is amazing! thank you!
Thank you for this amazing content!
Correction:
The hardware registers used by the Arduino Uno are located on-chip, separate from both RAM and ROM. These registers are used to control the behavior of the microcontroller, including setting pin directions, configuring timers and interrupts, and controlling various peripherals such as the analog-to-digital converter and serial communication ports.
I feel like messing with bare metal is kind of an uncanny valley of physicality. Gives me a bit of a thrill.
This guy is the Ben Eater of the embedded world!
Thanks a lot man! was looking for this :D
thanks
This is great! I already learned this stuff in a course at the university a few years ago, but needed a refresher. I always felt that the arduino coding is making things dumber rather than easier. And every time i start working with arduino i feel like im relearning bad habits lol. The easy accessability and price of arduinos is great but why cant we all just learn to code like this?
1:04 nice
Very nice. Looks like it will soon be time to ditch the IDE entirely and use something like avr-glibc.
Can you do ESP32 GPIO port manipulation?
At uni their forcing us to program the Arduino board in C rather than in the Arduino language and I can understand why. Thanks alot for the tutorial
Now, to read those one thousand pages of datasheet and see if I can find anything as useful as this...
Also, any chance you could link the datasheet and other references in the description?
Your explanation and effort is very nice! Also the way you say "delay" is making me feel like you must be playing electric guitar.
Thanks for a very understandable video. Is there a way to enter the port value in binary? IE portb=00100000 instead of portb=32? It would be easier to program multi led blink patterns this way.
In Arduino IDE, I’m pretty sure you can write binary if it starts with a capital B. Such as “int i = B11001010”
i like this kind of video its low level programming we can understand how mcu working under the hood and our ticket for understand mcu third partly library works
Ultimately the code will be compiled to machine code while uploading. Then why the "bare metal" codes are faster?
Great video. Thanks. Actually the sound of your loud typing made me realise how bad mine is! Must learn to type!
bro, u r smarter then my lecturer
Thank you very much!
i think if you indicate that the variable is volatile, the compiler won't optimize out the loop.
for(volatile unsigned i = 0; i
This is super helpful. I am trying to learn this but I am confused with the software which needs to be installed. I own a windows laptop - I have installed WINAVR and AVR DUDE. So i write my code on VS CODE, then I am to use a win-avr to compile it?
Can you not use hex values instead of decimal values?
You can use whatever you want. When it goes to the compiler, it's just a number. More commonly, you write something like (1>>5), which means "the 5th bit is a 1". I cover bit shifting in a later video.
An int can't represent a number up to a million @11:45? Is an int not an 8-byte value in Arduino land? Typical signed int is 2^31 = ~2.147 billion.
@@whyaretheseathing arduino uses a 2-byte int.
Honestly, most of the time I program using explicit variables, such as “uint16_t” when I want a 2 byte number, and “uint32_t” when I want a 32 bit number. That spares us from the ambiguity of “int”
@@MitchDavis2 Ahh, that's not confusing at all 😅Thanks for clarifying!
In Attiny402, I want to put a delay of 40 seconds.
Please suggest using assembly
How to adapt this code for esp8266?
To win in speed.
Do you have any examples for the new Arduino Uno R4? ;-)
What would be the difference between INPUT and INPUT_PULLUP in plain C?
Another solution might be to declare the loop variable volatile.
You got another subsicriber ☺️
It's worth pointing out that writing to the whole port to change one bit is bad programming. The code below is a better approach, albeit with magic numbers. I left them in so it matched the program in the video, but defining bit 5 with a sensible name such as LED_Pin and using 1
Should have covered or referred to a video on but-masking the registers, but good video.
where are those special variables defined?
Why don't you make i volatile? That should be enough to trick the compiler
To be honest watching this video made evrything click. For some reason it made me understand microcontroller programming better.
Hello. often program the microcontrollers. I see bit shift right or left using symbol ">>". why we use it. I am waiting for your response thank you.
How does the microcontroller know, that DDRB as a variable is actually the register DDRB? Is this information somewhere stored?
Great one thank you, one question why did you leave PORTB=32 and = 0 before the For loop ?
Where are definitions? Will this code even compile?
Thank you its so interesting ...
In Attiny402, this gives port not declared message. Which files to include ??
so why do we put "32" there I don't get it :/
thank you . this helps
I think he could've changed the compiler options to -o0 to avoid optimization
awesome!
I wish u see how the delay function is working , IN ASSEMBLY , that's scary .
hi, why don't you use millis?
Part of this series is breaking down code and avoiding anything that uses the Arduino framework. This is entirely for educational purposes to show what’s going on under the hood. Millis() is Arduino code to get the number of milliseconds from the start of the program
great!