How a Microcontroller starts

Поділитися
Вставка
  • Опубліковано 21 лис 2024

КОМЕНТАРІ • 112

  • @DoubleDee364
    @DoubleDee364 18 днів тому +105

    Please never leave us again 🙏🏾

  • @pritonce6562
    @pritonce6562 4 дні тому +3

    I programmed an STM32 for the first time 2 days ago. This really gave me a so much deeper insight into how these controllers work.
    Honestly loving how simple stupid it really is.
    I am also once again surprised and also not surprised that we can just use C to generate the startup assembly only using a few compiler flags.

  • @olokelo
    @olokelo 18 днів тому +36

    So much really interesting stuff. I feel like this 30 minute video is equivalent to weeks of reading the manuals without fully understanding them. Really well presented. Wow.

  • @kyle6344
    @kyle6344 16 днів тому +12

    Every video is a banger. I love these deep dives into the "basics" we often forget or never learn properly

  • @thaithinhtran5055
    @thaithinhtran5055 13 днів тому +2

    Very clearly, thanks man. I also devevop the bare metal embedded at the MCU company. This is very valuable lesson.

  • @sinamathew
    @sinamathew 18 днів тому +7

    Welcome back
    This time, teach us electronics and programming from scratch.

  • @stainlessCode
    @stainlessCode 12 днів тому +6

    Excellent, very straightforward explanation that completely cleaned up my confusions. I'm trying to bringup my own programming language on RP2040, that was super helpful to me.
    Although I have a few questions about bootloaders:
    * how and where do they fit into the whole picture
    * why someone would need one
    * how to deal (or not) with them from the point of view of writing everything from scratch. Basically how to write a barebones C program that will work under a bootloader.

    • @artfulbytes
      @artfulbytes  12 днів тому +3

      It depends :) But I think it makes sense to think of a bootloader as another small standalone program that runs before your main program. So, just like you need startup code to make the MCU ready to run the main program, you need startup code before the bootloader program. A bootloader is optional, but it's often used to separate the update mechanism from the main program, and to allow the main program to be upgraded without a dedicated debugger. If your bootloader is simple and perhaps not written in C, it may not require as much startup code though. In practice it may be like this: startup code 1->bootloader->startup code 2->main program.

    • @stainlessCode
      @stainlessCode 9 днів тому

      @@artfulbytes Thanks for the reply, that makes sense. But what I still do not fully understand is if the bootloader has to live somewhere in the flash, it will basically have to take the space of the interrupt table, so the main program cannot provide ISRs directly via a table. Is that correct?
      So the bootloader has to provide the interrupt stubs, and then before loading the main program the bootloader has to do some kind of dynamic linking to wire up main program's ISRs, or am I compeletely wrong here?

    • @artfulbytes
      @artfulbytes  9 днів тому +4

      @@stainlessCode STM32 allows you to change the address of the interrupt vector table (IVT) by writing to a register (VTOR). And yes bootloader would live in flash and it can have its own IVT and startup code. You would then place your main program including its IVT somewhere else in flash memory. Then just before the bootloader jumps to the main program it can write to VTOR to change the address to the IVT of the main program. Moving the IVT is not possible on all MCUs and in those cases you may have to partly share the IVT or solve it some other clever way.

    • @stainlessCode
      @stainlessCode 8 днів тому

      @@artfulbytes I see, that makes sense, thank you for the reply!

  • @MarkVolosov-zb3wc
    @MarkVolosov-zb3wc 18 днів тому +10

    You’re knowledgeable of the gcc tool chain is insane!!! Keep up the great videos!!

  • @iggypei
    @iggypei 17 днів тому +2

    Thanks for making this video. I had saved Memfault and EmbeddedArtistry's articles in my "read someday" list, but they are not light reading. This video makes these concepts much more enjoyable for me to follow along to (an engineer transitioning from mechatronics to embedded systems).

  • @panagiotischagias4119
    @panagiotischagias4119 18 днів тому +7

    Literally I was thinking about this channel yesterday.
    He's back boys!

    • @norbertbatiuk121
      @norbertbatiuk121 18 днів тому

      Haha same here. I actively searched for his channel yesterday and noted it was long time ago he uploaded. Quite scary

  • @thargor2k
    @thargor2k 8 днів тому +1

    Great video! Two small notes: most recent controllers will actually run vendor code from a ROM before jumping into user code - you sadly can't debug that in many cases since the debugger gets enabled after that... What is done there? E.g. loading calibration values that must be loaded in all circumstances.
    And the other: even without linking the C standard library you may have to provide memset/memcpy/... since gcc will (at some optimization levels) replace loops with those functions - independent of command line flags

    • @artfulbytes
      @artfulbytes  7 днів тому

      Thanks, appreciate the input! Lots of details to keep track of and I try to get away with brushing over many of them :)

    • @thargor2k
      @thargor2k 3 дні тому

      No shade, makes total sense - as I said its a great video as it is
      Just thought it might be interesting to some - surprised me a bit in the beginning but makes sense that there might be some other code hidden...

  • @MikeBondar
    @MikeBondar 17 днів тому +1

    this is gold! 🙏 thank you for laying it out, can't tell how much time I spent digging through internet trying to make sense out of linker scripts and how they are related to the startup scripts

  • @陈歌珊
    @陈歌珊 9 днів тому +1

    welcome back for detailed teaching

  • @ulysses_grant
    @ulysses_grant 15 днів тому

    So glad to see you're posting.
    Your videos are the best on microcontrollers and embedded systems!

  • @ltkdt
    @ltkdt 8 днів тому

    Nice to see this channel uploading again! Hope to see more content on low-level stuffs!

  • @gtrfanboy4933
    @gtrfanboy4933 18 днів тому

    Teach us embedded systems you are so good in this please share your knowledge with us🙏🏻

  • @Ziferten
    @Ziferten 18 днів тому

    I was super excited to see a new video from you, and it did not disappoint! I always thought it was interesting that C-only startup code was a selling point of ARM Cortex M, but most vendors still used assembly. Very interesting to see how it's done. Keep up the awesome videos!

  • @Bestcuriosity_1
    @Bestcuriosity_1 18 днів тому

    Thankyou for coming back please keep carry on quality informative contents for Us

  • @kittitouchlelapiyamit5625
    @kittitouchlelapiyamit5625 18 днів тому

    You're back! I really enjoy watching your videos very informative and full of valuable information. Keep up the great work!

  • @rehannasar5354
    @rehannasar5354 18 днів тому

    Buddy, your videos are a goldmine! Thanks for sharing.

  • @btconstantin3682
    @btconstantin3682 18 днів тому

    Ohhhh, finally a video where they explain this! Thanks!!

  • @RicardoBHubner
    @RicardoBHubner 15 днів тому +1

    Eu não entendi nada, mas entendi tudo.
    ótimo trabalho amigo.

  • @resethel3843
    @resethel3843 18 днів тому +1

    So glad to see you back 🎉

  • @AK-vx4dy
    @AK-vx4dy 18 днів тому

    Nice explanation, excelent job and mega respect, outstanding knowledge !
    But i have feeling like with ORM vs SQL, so much boilerplate around C code, that assembly looks clearer to me ;)
    Yes, i know, C will be partialy portable between simillar architecures/boards, but still i have no clear winner.

    • @artfulbytes
      @artfulbytes  15 днів тому

      I was a bit more verbose in my C code than necessary here as well

  • @sad_tuna
    @sad_tuna 18 днів тому

    This video is so much gold. It gives so much insight of how things work in a microcontroller. Thank you so much. Keep that going! PS: Are you considering linking agains picolibc?

    • @artfulbytes
      @artfulbytes  15 днів тому

      I think I've linked with picolibc in a few zephyr projects without thinking about it :) Not really considered the differences between picolibc vs newlib.

  • @magnoliacomputerscience7334
    @magnoliacomputerscience7334 13 днів тому

    Amazing video! Great work!! I learned a lot!

  • @zazazi95
    @zazazi95 18 днів тому

    Happy yo see you back again! Thank you

  • @krishnababu5190
    @krishnababu5190 18 днів тому +1

    It would be great if we move from bare metal to any RTOS and do some stuff there as well 😊.

  • @aleksandarglisic9384
    @aleksandarglisic9384 7 днів тому

    I wish I could've seen this two years ago 😅

  • @der.Schtefan
    @der.Schtefan 17 днів тому

    This is great if you want to play with things like Ben Eater's 6502 project and want to add C code

  • @Emb_Sys
    @Emb_Sys 18 днів тому

    Good to be back 😊

  • @nfjeldberg
    @nfjeldberg 18 днів тому

    To long since the last video Niklas! Please give us more content!

  • @albertkennis
    @albertkennis 2 дні тому

    Deep. Learned so much!

  • @subashgowtham6165
    @subashgowtham6165 6 днів тому

    Thank you for the amazing content 🎉

  • @emomaxd2462
    @emomaxd2462 17 днів тому

    kinda similar to writing an OS from scratch and writing a bootloader I passed that stage so I could understand what's going on in here, of course this is more specific to the MCU archtiecture and startup code needs to be configured according to the manufacturer and needs lots of datasheet checking about MCU specifically STM32 for this video
    In the end, it's a great vid.
    And I wonder your background like Electronics or CS?

    • @artfulbytes
      @artfulbytes  15 днів тому

      Yes some similarities indeed. Thanks. I studied CS, but do quite a bit of hardware design professionally atm.

  • @agnisri1201
    @agnisri1201 18 днів тому

    I am waiting for your video so long

  • @ahmetcanaksu6821
    @ahmetcanaksu6821 17 днів тому

    Incredible video

  • @blcouz
    @blcouz 18 днів тому

    Thanks for the video.

  • @wahidvianash
    @wahidvianash 18 днів тому

    welcom back

  • @bas7650
    @bas7650 18 днів тому

    Thanks for the video!

  • @arya8431
    @arya8431 18 днів тому

    Welcome back 🎉

  • @Cristi4n_Ariel
    @Cristi4n_Ariel 18 днів тому

    Hi, have you ever used the C2000/C6000 MCUs from Texas Instruments? There isn't much information about them on this site and since their architecture differs from that of ARM, I thought I'd be interesting to create a series around them. Although, I would think it'd be for a very niche audience.

    • @artfulbytes
      @artfulbytes  15 днів тому

      I haven't, yes quite niche :)

  • @Prabagaran-s3b
    @Prabagaran-s3b 15 днів тому

    It is possible to expect vedios on weekend . We are already waited for longtime so plese make Quickly and discuss various concepts as soon as possible. thanks artful bytes❤

    • @artfulbytes
      @artfulbytes  13 днів тому +1

      No specific day. Quality videos take time :)

  • @ahmetefeakyazi
    @ahmetefeakyazi 18 днів тому

    Amazing video!

  • @kyambaddemarkarthur6733
    @kyambaddemarkarthur6733 18 днів тому

    He's back!!

  • @scottspitlerII
    @scottspitlerII 18 днів тому

    0:02 a lot of prayer

  • @Unknown-s2v4h
    @Unknown-s2v4h 18 днів тому

    Welcome back man!!

  • @marcomeli9882
    @marcomeli9882 18 днів тому

    Welcome back!

  • @Lentato
    @Lentato 18 днів тому

    Welcome back

  • @Jonathan-ru9zl
    @Jonathan-ru9zl 4 дні тому

    Hi!
    In 7:14, doesn't debug trace usually move forward in a program?

    • @artfulbytes
      @artfulbytes  3 дні тому +1

      Is it not moving forward? You mean in the terminal below right? I may have cut the video a bit weird in certain places so they don't always line up.

    • @Jonathan-ru9zl
      @Jonathan-ru9zl 2 дні тому +1

      @@artfulbytes No, I meant actually in the code. Maybe not in this case, but sometimes I see that the debug trace doesnt progress sequentially, especially in low level code (goes back and forth)

    • @artfulbytes
      @artfulbytes  2 дні тому +1

      ​@@Jonathan-ru9zl Normally the program counter just increments, but there are branch/jump instructions such as bcc, which can jump to a specific address. For example, these instructions are used when repeating a code block such as in a loop, or when jumping to a function.

  • @Z0gos_
    @Z0gos_ 18 днів тому

    Please make more videos

  • @Andile-jz1vs
    @Andile-jz1vs 15 днів тому

    bare metal programming , is field iam looking to breaking into , i thought you were going to take out the bios chip set and flash it with program

    • @artfulbytes
      @artfulbytes  15 днів тому +1

      Microcontrollers typically don't have any bios chipset.

    • @Andile-jz1vs
      @Andile-jz1vs 15 днів тому

      @artfulbytes its kinda interesting ,maybe i should look at the architecture including flash memory and how its stores bootloader

  • @Prabagaran-s3b
    @Prabagaran-s3b 14 днів тому

    Can you make video about make files for stm32.

  • @johanliebert2048
    @johanliebert2048 17 днів тому

    go more stm32? And if it possible, I think parallel compare with AVR8 like atmega8 most be very understandable and opens up understanding. Yes it must be hard to make video, but u can make most greate course and try sell them

  • @randomsearches369
    @randomsearches369 18 днів тому

    I just love you!

  • @QuanLe-xy7uh
    @QuanLe-xy7uh 18 днів тому

    the goat return

  • @m-electronics5977
    @m-electronics5977 6 днів тому

    What Desktop Environment so you use?

  • @AK-vx4dy
    @AK-vx4dy 18 днів тому

    @27:15 i'm not sure but call to _start() should be befor call to main() ?

    • @artfulbytes
      @artfulbytes  15 днів тому +1

      You would call _start instead of main(). The function _start includes a call to main.

    • @AK-vx4dy
      @AK-vx4dy 15 днів тому

      @artfulbytes i see, now it make sense 😀

  • @Prabagaran-s3b
    @Prabagaran-s3b 13 днів тому

    I have stm32 bule phill it comes under arm Cortex m3 architecture I but doesn't reach main it goes half fault . I don't where the mistake is where any problem in openocd

    • @artfulbytes
      @artfulbytes  12 днів тому

      You can step from the beginning like I did in the video to identify the instruction that causes the hard fault.

  • @TheGabrielMoon
    @TheGabrielMoon 16 днів тому

    nice

  • @兼明-p2b
    @兼明-p2b 15 днів тому

    good

  • @TunifyBasic
    @TunifyBasic 15 днів тому

    yo pls do a vid about the stm32f407 i got one as a gift and i'm stuck with it i wanna use do something and i need to work around the roll,pitch & yaw it has builtin osciloscope and idk how to work with it. thx btw for your content

  • @Prabagaran-s3b
    @Prabagaran-s3b 17 днів тому

    how to set up these environment

    • @artfulbytes
      @artfulbytes  15 днів тому

      Install ubuntu linux and vs code.

  • @bananaear23
    @bananaear23 18 днів тому

    Can you make a mini C course

    • @artfulbytes
      @artfulbytes  15 днів тому

      I think there already is quite good content out there on that already.

  • @oasdflkjo
    @oasdflkjo 18 днів тому

    🙏

  • @Prabagaran-s3b
    @Prabagaran-s3b 15 днів тому

    Can you make vedio makefile for this project.

    • @artfulbytes
      @artfulbytes  13 днів тому

      I explain Makefiles in my video series. A different microcontroller/toolchain, but the Makefile structure would be the same.

  • @user-ik6mh8xb6c
    @user-ik6mh8xb6c 17 днів тому

    Could this startup code can technically be called bootloader?

    • @artfulbytes
      @artfulbytes  15 днів тому

      In practice, there may be some overlap, but roughly speaking, a bootloader is a small program that runs before the main application, while startup code is code that runs before any program, including the bootloader.

  • @reinasama904
    @reinasama904 18 днів тому

    Ommmggg you're baaack!

  • @eranzecharia
    @eranzecharia 15 днів тому +1

    Microntoller.

  • @SuperElephant
    @SuperElephant 17 днів тому

    Bruh

  • @pajeetsingh
    @pajeetsingh 18 днів тому

    Windows 😒

  • @JayDee-b5u
    @JayDee-b5u 18 днів тому +2

    I appreciate the lesson as always. However this is way too dense. I, and perhaps others, may be out my depth especially as I don't know what 'gcc expects...' really entails.

    • @1343-p4u
      @1343-p4u 18 днів тому +1

      This probably isn’t for people with little to no knowledge. Might need watch other videos for that

    • @artfulbytes
      @artfulbytes  15 днів тому

      I assume some prior knowledge to be able to follow along in this video.