How a Microcontroller starts

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 113

  • @DoubleDee364
    @DoubleDee364 20 วันที่ผ่านมา +107

    Please never leave us again 🙏🏾

  • @pritonce6562
    @pritonce6562 6 วันที่ผ่านมา +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 20 วันที่ผ่านมา +37

    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 18 วันที่ผ่านมา +12

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

  • @sauravkumaragarwal6598
    @sauravkumaragarwal6598 19 ชั่วโมงที่ผ่านมา

    This is the type of content, I want to pay the internet bill for. Thanks a lot bro❤

  • @thaithinhtran5055
    @thaithinhtran5055 15 วันที่ผ่านมา +2

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

  • @stainlessCode
    @stainlessCode 14 วันที่ผ่านมา +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  14 วันที่ผ่านมา +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 11 วันที่ผ่านมา

      @@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  11 วันที่ผ่านมา +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 10 วันที่ผ่านมา

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

  • @sinamathew
    @sinamathew 20 วันที่ผ่านมา +7

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

    • @sinamathew
      @sinamathew 20 วันที่ผ่านมา +2

      C and ASM

  • @MarkVolosov-zb3wc
    @MarkVolosov-zb3wc 20 วันที่ผ่านมา +10

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

  • @panagiotischagias4119
    @panagiotischagias4119 20 วันที่ผ่านมา +7

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

    • @norbertbatiuk121
      @norbertbatiuk121 20 วันที่ผ่านมา

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

  • @iggypei
    @iggypei 19 วันที่ผ่านมา +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).

  • @MikeBondar
    @MikeBondar 19 วันที่ผ่านมา +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

  • @thargor2k
    @thargor2k 10 วันที่ผ่านมา +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  10 วันที่ผ่านมา

      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 5 วันที่ผ่านมา

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

  • @陈歌珊
    @陈歌珊 11 วันที่ผ่านมา +1

    welcome back for detailed teaching

  • @ltkdt
    @ltkdt 10 วันที่ผ่านมา

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

  • @ulysses_grant
    @ulysses_grant 18 วันที่ผ่านมา

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

  • @gtrfanboy4933
    @gtrfanboy4933 20 วันที่ผ่านมา

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

  • @Ziferten
    @Ziferten 20 วันที่ผ่านมา

    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 20 วันที่ผ่านมา

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

  • @btconstantin3682
    @btconstantin3682 20 วันที่ผ่านมา

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

  • @resethel3843
    @resethel3843 20 วันที่ผ่านมา +1

    So glad to see you back 🎉

  • @kittitouchlelapiyamit5625
    @kittitouchlelapiyamit5625 20 วันที่ผ่านมา

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

  • @rehannasar5354
    @rehannasar5354 20 วันที่ผ่านมา

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

  • @zazazi95
    @zazazi95 20 วันที่ผ่านมา

    Happy yo see you back again! Thank you

  • @RicardoBHubner
    @RicardoBHubner 17 วันที่ผ่านมา +1

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

  • @albertkennis
    @albertkennis 4 วันที่ผ่านมา

    Deep. Learned so much!

  • @Emb_Sys
    @Emb_Sys 20 วันที่ผ่านมา

    Good to be back 😊

  • @AK-vx4dy
    @AK-vx4dy 20 วันที่ผ่านมา

    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  17 วันที่ผ่านมา

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

  • @magnoliacomputerscience7334
    @magnoliacomputerscience7334 15 วันที่ผ่านมา

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

  • @subashgowtham6165
    @subashgowtham6165 8 วันที่ผ่านมา

    Thank you for the amazing content 🎉

  • @krishnababu5190
    @krishnababu5190 20 วันที่ผ่านมา +1

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

  • @sad_tuna
    @sad_tuna 20 วันที่ผ่านมา

    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  17 วันที่ผ่านมา

      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.

  • @der.Schtefan
    @der.Schtefan 19 วันที่ผ่านมา

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

  • @ahmetcanaksu6821
    @ahmetcanaksu6821 19 วันที่ผ่านมา

    Incredible video

  • @blcouz
    @blcouz 20 วันที่ผ่านมา

    Thanks for the video.

  • @bas7650
    @bas7650 20 วันที่ผ่านมา

    Thanks for the video!

  • @arya8431
    @arya8431 20 วันที่ผ่านมา

    Welcome back 🎉

  • @agnisri1201
    @agnisri1201 20 วันที่ผ่านมา

    I am waiting for your video so long

  • @aleksandarglisic9384
    @aleksandarglisic9384 9 วันที่ผ่านมา

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

  • @nfjeldberg
    @nfjeldberg 20 วันที่ผ่านมา

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

  • @ahmetefeakyazi
    @ahmetefeakyazi 20 วันที่ผ่านมา

    Amazing video!

  • @emomaxd2462
    @emomaxd2462 19 วันที่ผ่านมา

    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  17 วันที่ผ่านมา

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

  • @marcomeli9882
    @marcomeli9882 20 วันที่ผ่านมา

    Welcome back!

  • @wahidvianash
    @wahidvianash 20 วันที่ผ่านมา

    welcom back

  • @Unknown-s2v4h
    @Unknown-s2v4h 20 วันที่ผ่านมา

    Welcome back man!!

  • @kyambaddemarkarthur6733
    @kyambaddemarkarthur6733 20 วันที่ผ่านมา

    He's back!!

  • @Jonathan-ru9zl
    @Jonathan-ru9zl 6 วันที่ผ่านมา

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

    • @artfulbytes
      @artfulbytes  5 วันที่ผ่านมา +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 4 วันที่ผ่านมา +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  4 วันที่ผ่านมา +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.

  • @Cristi4n_Ariel
    @Cristi4n_Ariel 20 วันที่ผ่านมา

    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  17 วันที่ผ่านมา

      I haven't, yes quite niche :)

  • @Lentato
    @Lentato 20 วันที่ผ่านมา

    Welcome back

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา +1

      Roberto, good to see you

  • @randomsearches369
    @randomsearches369 20 วันที่ผ่านมา

    I just love you!

  • @Prabagaran-s3b
    @Prabagaran-s3b 16 วันที่ผ่านมา

    Can you make video about make files for stm32.

  • @QuanLe-xy7uh
    @QuanLe-xy7uh 20 วันที่ผ่านมา

    the goat return

  • @AK-vx4dy
    @AK-vx4dy 20 วันที่ผ่านมา

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

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา +1

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

    • @AK-vx4dy
      @AK-vx4dy 17 วันที่ผ่านมา

      @artfulbytes i see, now it make sense 😀

  • @TunifyBasic
    @TunifyBasic 17 วันที่ผ่านมา

    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 16 วันที่ผ่านมา

    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  14 วันที่ผ่านมา

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

  • @m-electronics5977
    @m-electronics5977 8 วันที่ผ่านมา

    What Desktop Environment so you use?

    • @artfulbytes
      @artfulbytes  8 วันที่ผ่านมา

      ubuntu linux

    • @m-electronics5977
      @m-electronics5977 8 วันที่ผ่านมา

      @ But the default from Ubuntu? It doesn't look like that

    • @artfulbytes
      @artfulbytes  8 วันที่ผ่านมา

      ​@@m-electronics5977 i3 window manager

  • @scottspitlerII
    @scottspitlerII 20 วันที่ผ่านมา

    0:02 a lot of prayer

  • @Z0gos_
    @Z0gos_ 20 วันที่ผ่านมา

    Please make more videos

  • @Andile-jz1vs
    @Andile-jz1vs 18 วันที่ผ่านมา

    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  17 วันที่ผ่านมา +1

      Microcontrollers typically don't have any bios chipset.

    • @Andile-jz1vs
      @Andile-jz1vs 17 วันที่ผ่านมา

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

  • @TheGabrielMoon
    @TheGabrielMoon 18 วันที่ผ่านมา

    nice

  • @johanliebert2048
    @johanliebert2048 19 วันที่ผ่านมา

    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

  • @Prabagaran-s3b
    @Prabagaran-s3b 17 วันที่ผ่านมา

    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  16 วันที่ผ่านมา +2

      No specific day. Quality videos take time :)

  • @oasdflkjo
    @oasdflkjo 20 วันที่ผ่านมา

    🙏

  • @bananaear23
    @bananaear23 20 วันที่ผ่านมา

    Can you make a mini C course

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา

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

  • @Prabagaran-s3b
    @Prabagaran-s3b 17 วันที่ผ่านมา

    Can you make vedio makefile for this project.

    • @artfulbytes
      @artfulbytes  16 วันที่ผ่านมา

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

  • @Prabagaran-s3b
    @Prabagaran-s3b 19 วันที่ผ่านมา

    how to set up these environment

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา

      Install ubuntu linux and vs code.

  • @兼明-p2b
    @兼明-p2b 18 วันที่ผ่านมา

    good

  • @user-ik6mh8xb6c
    @user-ik6mh8xb6c 19 วันที่ผ่านมา

    Could this startup code can technically be called bootloader?

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา

      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 20 วันที่ผ่านมา

    Ommmggg you're baaack!

  • @eranzecharia
    @eranzecharia 18 วันที่ผ่านมา +1

    Microntoller.

  • @SuperElephant
    @SuperElephant 19 วันที่ผ่านมา

    Bruh

  • @pajeetsingh
    @pajeetsingh 20 วันที่ผ่านมา

    Windows 😒

    • @Lentato
      @Lentato 19 วันที่ผ่านมา

      ?

    • @iggypei
      @iggypei 19 วันที่ผ่านมา

      ?

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา

      ?

  • @JayDee-b5u
    @JayDee-b5u 20 วันที่ผ่านมา +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 20 วันที่ผ่านมา +2

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

    • @artfulbytes
      @artfulbytes  17 วันที่ผ่านมา +1

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