Bare-Metal MCU #1 - Intro to registers

Поделиться
HTML-код
  • Опубликовано: 28 июн 2024
  • This is the first video in a journey from Arduino to STM8. The goal is to start with Arduino, which is a popular starting point. I'll then break it down into a fundamental level, and then apply those fundamentals to other microcontrollers, such as the STM8.
    This video focuses on how to program an ATMEGA328 while avoiding the Arduino helper functions.
    ATMEGA328P Datasheet: ww1.microchip.com/downloads/en...
    ATMEGA328 Datasheet:
    ww1.microchip.com/downloads/en...

Комментарии • 129

  • @mohamadalmusallam8676
    @mohamadalmusallam8676 3 года назад +93

    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!!

  • @dave_dennis
    @dave_dennis 4 года назад +33

    I like programming as close to the metal as possible. GOOD JOB showing this and illustrating why this is superior.

  • @natesamuelson1841
    @natesamuelson1841 2 года назад +20

    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.

  • @prasadsalunke23
    @prasadsalunke23 11 месяцев назад +4

    Criminally underrated channel this is ☝️🙂Keep up the good work ❤

  • @Electromakerio
    @Electromakerio 3 года назад +8

    We loved this tutorial so much we featured it in this week's Electromaker show!

  • @raif10
    @raif10 Год назад +2

    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.

  • @iamolham
    @iamolham 2 месяца назад +1

    this guy knows alot, thank you for this amazing information and please continue sharing it

  • @gusmcmanus6159
    @gusmcmanus6159 Год назад +5

    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.

  • @nicholasmascioni3333
    @nicholasmascioni3333 Год назад +1

    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!

  • @torenjk
    @torenjk 3 года назад +9

    I dont understand how this series has such low views... Those Videos taught me so much!
    Thanks for that dude!

    • @abutaymiyyahlectures
      @abutaymiyyahlectures 3 года назад +2

      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

    • @MouradSahli
      @MouradSahli 3 года назад

      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.

  • @okaytokay
    @okaytokay 3 года назад +3

    Saved the playlist. Your explanations are super crystal clear. Thanks

  • @AlexSKelly-up7lf
    @AlexSKelly-up7lf 3 года назад +5

    Man, you're killing it.

  • @rpr42
    @rpr42 3 года назад +2

    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!

  • @kevin2706
    @kevin2706 Год назад +3

    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.

  • @cthoadmin7458
    @cthoadmin7458 Год назад +1

    This is high quality stuff Mitch! Thanks for bringing it to us... (rushing away to try the blink example myself)

  • @Landline3772
    @Landline3772 3 месяца назад +1

    The best explanation I've ever seen , you are best!

  • @meemuboi
    @meemuboi 3 года назад +1

    This was really easy to understand, well done and thank you for making these videos!

  • @acsaba22
    @acsaba22 3 года назад +5

    Thx Mitch! I was looking for some Ben Eater style videos about understanding microcontrollers. I think I've found it!

  • @AdilKhan-jp7hn
    @AdilKhan-jp7hn 3 года назад

    Thank you for such detailed information on these avr microcontroller. Excellent content and video quality

  • @rickybobbyracing9106
    @rickybobbyracing9106 2 года назад

    Great job, I am really enjoying this series

  • @nyakoi
    @nyakoi Год назад +1

    Thank you, exactly what I needed. Very well explained!

  • @lokipuk
    @lokipuk 11 месяцев назад

    You are SO the best of the best. Perfect explanations

  • @andreialexander405
    @andreialexander405 2 года назад

    Thank you very much, Mitch, awesome, very informative videos!

  • @alexclarosfernandez8467
    @alexclarosfernandez8467 4 месяца назад

    Great videos!!!
    Thanx for your time and effort!!!

  • @brunosuperman
    @brunosuperman Год назад +1

    The best video about this on the internet sofar! You are really didactical! Thanks you!

  • @jameshall7539
    @jameshall7539 Год назад +1

    thanks for this tutorial it teaches people how to do it in the right way

  • @phamngocthinh5913
    @phamngocthinh5913 Год назад

    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

  • @Dygear
    @Dygear 7 месяцев назад +2

    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.

  • @dhruvandangar9972
    @dhruvandangar9972 3 года назад +1

    nice work bro. hats off to you.

  • @luismiguelfrancisco824
    @luismiguelfrancisco824 18 дней назад

    This vídeo is amazing man!

  • @ionizationx
    @ionizationx 2 года назад

    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 :-)

  • @n-o-i-d
    @n-o-i-d 3 года назад

    Thank you for this amazing content!

  • @Fubar12341
    @Fubar12341 Год назад

    Brilliant video well explained and it works !

  • @edinetgrunhed6000
    @edinetgrunhed6000 3 года назад

    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

  • @nathanquattrochi1299
    @nathanquattrochi1299 3 года назад +3

    1:04 nice

  • @sermuns
    @sermuns Год назад

    this is amazing! thank you!

  • @groveraruquipa9933
    @groveraruquipa9933 2 года назад

    Amazing video, thank you very much!!

  • @slowjocrow6451
    @slowjocrow6451 Год назад

    Thanks for the video 👍 Trying to learn bare metal with no previous microcontroller experience

  • @oz3230
    @oz3230 3 года назад

    Thanks a lot man! was looking for this :D

  • @aregjan
    @aregjan 6 месяцев назад

    Wow, 18x faster with direct access ?? That's an enormous improvement, I shall do that going forward. These videos are really great .

  • @arduinomaquinas
    @arduinomaquinas Год назад

    Big show, good job, subscribed and like 1.6K full 😉👍

  • @Pnlkmr43
    @Pnlkmr43 3 года назад

    Excellent content ie., Oscilloscope waves (high level vs low level port assessing ) 18x faster than high level
    Thank you

  • @ajmalashraf7921
    @ajmalashraf7921 3 года назад

    Thank you its so interesting ...

  • @GingerNingerGames
    @GingerNingerGames Год назад

    I realise this is 2 years old now, but a good way to make a "Do nothing" loop is to run the following.
    __asm__ __volatile__ ("nop
    \t");
    That is an assembly line for no operation (nop) I can't remember what the
    \t does, but the bit where it says "volatile" means the compiler won't optimise it out. This is what I use for either fault states to entirely halt operation, or for stuff like this where you need it to do nothing while simultaneously keeping the compiler happy that you're actually doing something.
    This is also the only thing I remembered from my coding course in Uni, and I didn't even remember it, I just copy pasted it from one of my projects for uni.

  • @abutaymiyyahlectures
    @abutaymiyyahlectures 3 года назад

    awesome!

  • @Swordhero111
    @Swordhero111 Год назад

    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.

  • @testme2026
    @testme2026 3 года назад

    Great one thank you, one question why did you leave PORTB=32 and = 0 before the For loop ?

  • @freddiesnijman
    @freddiesnijman 4 года назад

    Thank you

  • @abstractapproach634
    @abstractapproach634 3 года назад +1

    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)

    • @MitchDavis2
      @MitchDavis2  3 года назад +2

      Pbbbttttt. That’s because I had no idea I did that until you just pointed it out

  • @emma7694
    @emma7694 Год назад

    great!

  • @mostafagaberahmed6657
    @mostafagaberahmed6657 3 года назад

    thank you . this helps

  • @2ftpmarco
    @2ftpmarco 7 месяцев назад

    thanks !

  • @TravistheMaker
    @TravistheMaker 4 года назад +2

    Also, any chance you could link the datasheet and other references in the description?

  • @hitectenshi7566
    @hitectenshi7566 7 месяцев назад

    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

  • @mustardthefirst1583
    @mustardthefirst1583 11 месяцев назад

    thanks

  • @zetaconvex1987
    @zetaconvex1987 3 года назад

    Very nice. Looks like it will soon be time to ditch the IDE entirely and use something like avr-glibc.

  • @LewisCampbellTech
    @LewisCampbellTech 3 года назад +2

    I always wondered what magic was going on in that digitalWrite function. turns out it's not so scary after all

  • @wrmusic8736
    @wrmusic8736 Год назад +1

    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.

  • @zDoubleE23
    @zDoubleE23 4 месяца назад

    For part around 10:40, you might be able to fool the compiler by including semicolon “;” in your for loop.

  • @ThordMoller
    @ThordMoller Год назад +1

    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?

  • @zephsmith3499
    @zephsmith3499 3 года назад

    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.

    • @zephsmith3499
      @zephsmith3499 3 года назад +1

      @@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!

  • @2OO_OK
    @2OO_OK Год назад

    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.

    • @MitchDavis2
      @MitchDavis2  Год назад +1

      In Arduino IDE, I’m pretty sure you can write binary if it starts with a capital B. Such as “int i = B11001010”

  • @gustavocortico1681
    @gustavocortico1681 Год назад

    I feel like messing with bare metal is kind of an uncanny valley of physicality. Gives me a bit of a thrill.

  • @gapguy9564
    @gapguy9564 2 года назад

    Your explanation and effort is very nice! Also the way you say "delay" is making me feel like you must be playing electric guitar.

  • @manofmesopotamia7602
    @manofmesopotamia7602 2 года назад

    You got another subsicriber ☺️

  • @underlecht
    @underlecht 2 года назад

    Great video! However, the timing calculation in 6:20 is not correct since on left there is assignment-only, and on right it is read-and-assignment operation. These do different things. To make comparison correct, the |= and &= operators should be used on left side instead of the =.

  • @faizurrahman2399
    @faizurrahman2399 Год назад

    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.

  • @subhashkendole3005
    @subhashkendole3005 11 месяцев назад

    In Attiny402, I want to put a delay of 40 seconds.
    Please suggest using assembly

  • @etleo3811
    @etleo3811 11 месяцев назад

    ❤🙌🏾 🎉

  • @eduarddez4416
    @eduarddez4416 Год назад

    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

  • @reeb8587
    @reeb8587 2 года назад +1

    good up to the point of delay function. NOP loops are not the way to go, missed opportunity to talk about timers and interrupts

    • @MitchDavis2
      @MitchDavis2  2 года назад +1

      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

    • @reeb8587
      @reeb8587 2 года назад

      @@MitchDavis2 valid points 👍🏻 im enjoying your videos so far, hope you'll come up with more!

  • @bob-ny6kn
    @bob-ny6kn 2 года назад

    Now, to read those one thousand pages of datasheet and see if I can find anything as useful as this...

  • @bramsmcfadden
    @bramsmcfadden 5 месяцев назад

    bro, u r smarter then my lecturer

  • @trarredbandit9734
    @trarredbandit9734 Год назад

    Can you do ESP32 GPIO port manipulation?

  • @Fnta_discovery
    @Fnta_discovery Год назад

    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.

  • @medicallyunexplainedsymptoms
    @medicallyunexplainedsymptoms 3 месяца назад

    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

  • @Flyonwaterslow
    @Flyonwaterslow 4 месяца назад

    🎉

  • @xKreesherZ
    @xKreesherZ 3 года назад

    where are those special variables defined?

  • @saduniwathsala
    @saduniwathsala Год назад

    👍

  • @adumont
    @adumont 2 года назад

    Would you consider making a similar bare metal series for ESP32, maybe the esp32-c3 RISC-V uC?

    • @MitchDavis2
      @MitchDavis2  2 года назад

      I haven’t gotten a chance to use any ESP32s yet for projects, so I don’t know much about them. I have a few in a box, but I haven’t done more than simple blink examples with them yet

    • @adumont
      @adumont 2 года назад

      @@MitchDavis2 I'd love to see the blink done from register manipulation, the most bare metal way the better. Maybe even assemble from assembly code, flash the binary to the uC. No C, no IDE...

  • @subhashkendole3005
    @subhashkendole3005 Год назад

    In Attiny402, this gives port not declared message. Which files to include ??

  • @mauritzg1
    @mauritzg1 11 месяцев назад

    Do you have any examples for the new Arduino Uno R4? ;-)

  • @iamsparkicus
    @iamsparkicus 2 года назад

    Great video. Thanks. Actually the sound of your loud typing made me realise how bad mine is! Must learn to type!

  • @IvanEng747
    @IvanEng747 Год назад

    How to adapt this code for esp8266?
    To win in speed.

  • @thomashvnmusic
    @thomashvnmusic Год назад

    To be honest watching this video made evrything click. For some reason it made me understand microcontroller programming better.

  • @fixfaxerify
    @fixfaxerify Год назад

    Another solution might be to declare the loop variable volatile.

  • @brianxia
    @brianxia 3 года назад

    Will continuously re-writing register wear down the memory? I heard they usually have limited number of read/write.

    • @MitchDavis2
      @MitchDavis2  3 года назад +2

      Flash memory (where your program lives) and EEPROM memory (non-volatile memory) have finite write cycles. I believe they can OFFICIALLY be written roughly 100,000 times. Some people have done tests and discovered they work reliably for many more cycles.
      Registers live in RAM, and RAM is designed to be writen/read infinitely.
      Also, registers are what make the microcontroller work. There is no way to make your microcontroller do anything without writing to these registers. This all happens behind the scenes if you use something like "digitalWrite()"

  • @isaacyuki1
    @isaacyuki1 9 месяцев назад

    How does the microcontroller know, that DDRB as a variable is actually the register DDRB? Is this information somewhere stored?

  • @shawntaylor9509
    @shawntaylor9509 3 года назад +1

    Can you not use hex values instead of decimal values?

    • @MitchDavis2
      @MitchDavis2  3 года назад

      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.

  • @VeritasEtAequitas
    @VeritasEtAequitas Год назад

    Should have covered or referred to a video on but-masking the registers, but good video.

  • @offensivebias3965
    @offensivebias3965 Год назад

    Question please correct me if i am wrong , by setting DDRB = 32; wouldn't that turn all PORTB# to be as an output ?

    • @zDoubleE23
      @zDoubleE23 4 месяца назад

      No. 32 is just decimal form of binary 00100000.

  • @simpletech2016
    @simpletech2016 2 месяца назад

    Ultimately the code will be compiled to machine code while uploading. Then why the "bare metal" codes are faster?

  • @gaiuszeno1331
    @gaiuszeno1331 2 года назад

    Why don't you make i volatile? That should be enough to trick the compiler

  • @GrandNecro
    @GrandNecro 3 месяца назад

    i think if you indicate that the variable is volatile, the compiler won't optimize out the loop.
    for(volatile unsigned i = 0; i

  • @nm7c00
    @nm7c00 11 месяцев назад

    I think he could've changed the compiler options to -o0 to avoid optimization

  • @abdox86
    @abdox86 2 года назад

    I wish u see how the delay function is working , IN ASSEMBLY , that's scary .

  • @grzesiek1x
    @grzesiek1x 2 года назад

    so why do we put "32" there I don't get it :/

  • @QWin-ir6yq
    @QWin-ir6yq 4 месяца назад

    Where are definitions? Will this code even compile?

  • @ay-pj8co
    @ay-pj8co 3 года назад

    Dont you have to give data type when assigning a variable? So shouldnt it be uint32_t PORTB = 32 instead of just PORTB = 32?

    • @ay-pj8co
      @ay-pj8co 3 года назад +1

      @@MitchDavis2 i really appreciate the quick reply that clarified that issue for me. Just one more question; why do we upload our programs to an mcu in hexadecimal format? Shouldnt it be in binary format? Thanks!

    • @ay-pj8co
      @ay-pj8co 3 года назад +1

      @@MitchDavis2 thanks again for clearing that up. I'll be sure to watch the videos you referenced and i hope you keep making these videos since good embedded systems content is really lacking on youtube in my experience. Thanks!

  • @paraskhosla9622
    @paraskhosla9622 2 года назад

    hi, why don't you use millis?

    • @MitchDavis2
      @MitchDavis2  2 года назад

      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