Programming the SMALLEST Chip I've Ever Used

Поділитися
Вставка
  • Опубліковано 20 січ 2025

КОМЕНТАРІ • 56

  • @Cptnbond
    @Cptnbond 3 роки тому +64

    I really likes your "low level made simple" approach without overly complicated setups with IDE's but just an editor and a terminal. You really inspire one to experiment with more bare metal pgm. Will try this. Cheers.

  • @MrMatthijsr
    @MrMatthijsr 3 роки тому +21

    Man I can't say how well your content compliments my CS major, I just wish more people were here to appreciate it!

    • @LowLevelTV
      @LowLevelTV  3 роки тому +3

      Thanks bro! The channel is growing, if that makes you feel better! :D

  • @hashomi0596
    @hashomi0596 2 роки тому +5

    Finding your channel is like hitting gold. Thank you for such great videos.

  • @sparky173j
    @sparky173j 2 роки тому +9

    The AT tiny series are great for small tasks. The one without RAM is extra fun to program, as the CPU registers are pretty much the only memory you have.

  • @kylefaust7743
    @kylefaust7743 2 роки тому +3

    Your videos and bare metal programing skills are both off the charts. This is exactly what I was looking for. I have an Arduino Uno and I have been learning to program with it but I wanted to know if it was possible to program chips individually instead of just keeping to the board. What you just showed us was incredible and I have been reading and trying to grasp hardware for the last 2 years. This gives me a greater understanding than I ever had on programs, chips, systems and this was a 6 minute video.

    • @LowLevelTV
      @LowLevelTV  2 роки тому +2

      Glad you enjoyed, thanks for watching!

  • @misterbee4574
    @misterbee4574 Рік тому

    I like that you speak in a quick and easy to understand manner. I should be able to follow your tuts. with ease and it helps I have basic understanding already of all of this. Thank you.

  • @acerIOstream
    @acerIOstream 2 роки тому +2

    I love the little "Activate Windows" in the corner

  • @edgeeffect
    @edgeeffect 2 роки тому +2

    I've been REALLY enjoying this channel. If you're talking about stuff I don't know you make it sound easy... If you're talking about stuff I do know, it's still interesting enough for me to listen along and chuck in a comment or two. ......... Great subject matter, really well presented!
    For a lot of my projects, I use the ATTiny24... it's got a bit more GPIO than the 45/85 (usually "just enough") but it's still not as "huge" ;) as an ATMega328. ATTiny2313 is a nice one too It's got a bit more GPIO than the 24 (but no ADC).

    • @LowLevelTV
      @LowLevelTV  2 роки тому +1

      Glad you’re enjoying the videos!

  • @goodeveningtech700
    @goodeveningtech700 3 роки тому

    Awesome video! Short and simple.

  • @tuxcode7344
    @tuxcode7344 2 роки тому +2

    Nice! I really like how I've never found how I can specify a different CPU speed in Arduino IDE (it seems you need to change configuration files and what not) and here it's just a simple F_CPU definition passed to the compiler. I may end up forgetting about ArduinoIDE and switch to this way

  • @montpierce424
    @montpierce424 3 роки тому +8

    Cool video. Thanks. "_BV(DDB3)" is the same as (1

    • @LowLevelTV
      @LowLevelTV  3 роки тому +4

      For the purpose of this video I didnt want to dive too deep on bitmasking and thought the macro looked a bit cleaner.
      Also I think you mean ^= for the toggle ;)
      Thanks for watching and commenting bro!

    • @NormanNodDunbar
      @NormanNodDunbar 3 роки тому +5

      Writing a 1 to a bit in the PINx register will toggle the corresponding pin. No need to ^=. Works on the AtMega328 as well.
      Cheers,
      Norm.

    • @LowLevelTV
      @LowLevelTV  3 роки тому +4

      @@NormanNodDunbar Wow I was not aware of the PINX register, today I learned!

    • @NormanNodDunbar
      @NormanNodDunbar 3 роки тому

      @@LowLevelTV sorry, too used to AtMega328. It has a few PIN registers, AtTiny just has PINB (as you know!) -- I should have typed PINB rather than PINx. My bad.
      Cheers,
      Norm.

    • @montpierce424
      @montpierce424 3 роки тому +2

      @@LowLevelTV Nope. I wrote what I meant (copy-n-pasted from an actual program). When you write a bit to "PINB", it's not the same as writing to the PORTB. In the datasheet, you will see that writing bits to PINB SFR tells it to "toggle" the bit(s). :)

  • @CallousCoder
    @CallousCoder 3 роки тому +3

    I love this little chip. Well actually it’s bigger brother ATTiny85 I personally program them in assembler because it’s functionality is so limited :) but useful chip.

    • @LowLevelTV
      @LowLevelTV  3 роки тому +4

      That's smart, 4K flash isn't a ton of room. I'll probably do a video on AVR assembly with this chip in the coming weeks

    • @CallousCoder
      @CallousCoder 3 роки тому +1

      @@LowLevelTV cool! I’ll subscribe, I see we do similar things and have similar interests.

    • @LowLevelTV
      @LowLevelTV  3 роки тому +1

      @@CallousCoder subbed back. I see your channel is fairly new, good luck and have fun!

    • @CallousCoder
      @CallousCoder 3 роки тому

      @@LowLevelTV yeah I started a month ago, with beating the world record on 100M Dash :) and since I have so many smallish projects and ideas and sometime, I’m between projects taking a little sabbatical, it gives me some time to make those videos. My HornyBox mark 1 (uses the ATTiny85) the video about the mark 2 is all C++ on a Pi zero.
      I don’t know how many videos I will make, when I’m back in the daily grind though :)
      My bigger project is actually this: instagram.com/p/CMunoMunpU3/? a programming game. The NodeJS VS C++ performance test is actually for this programming game.

    • @montpierce424
      @montpierce424 3 роки тому +2

      @@LowLevelTV Straight C is hard to beat. Have the compiler output ASM for you, and then see if you can optimize it? Unless you really really like assembly.. I've tried in the past, but always found C's code already pretty well optimized. But, on the other hand, I'm not an assembly expert... so I'm sure others can do better than I...

  • @Sheltieist
    @Sheltieist 6 місяців тому

    Thanks for this video, If I understand it correctly, this is what I'm looking for. I'm looking to make my own lighting kits for model making, setting up lights to go on and off to make an effect. So once I program a chip accordingly, I can make a small board, solder items in place and place it in a model. Is that correct? I know I will have to be doing the math to get the right power source for the lights to to be lit.

  • @int16_t
    @int16_t 3 роки тому +5

    Since you're working with chips, shouldn't the return of main is void?

    • @LowLevelTV
      @LowLevelTV  3 роки тому +4

      Good catch! You're right, main in an embedded system should be a procedure and not a function.

  • @fnax
    @fnax 3 роки тому +3

    Great tutorial but when i try to program attiny45 i got
    avrdude: AVR device initialized and ready to accept instructions
    avrdude: Device signature = 0x000000 (retrying)
    avrdude: Device signature = 0x000000
    avrdude: Yikes! Invalid device signature.
    avrdude: Expected signature for ATtiny45 is 1E 92 06
    avrdude: NOTE: "flash" memory has been specified, an erase cycle will be performed
    To disable this feature, specify the -D option.
    avrdude: erasing chip
    avrdude: reading input file "blink.hex"
    avrdude: input file blink.hex auto detected as Intel Hex
    avrdude: writing flash (1238 bytes):

    • @LowLevelTV
      @LowLevelTV  3 роки тому +1

      Probably has to do with the connection or baud rate. The 0x0000000 device signature reads like a voltage issue

  • @Atmatan
    @Atmatan 8 місяців тому

    Teach me how to write raw hexadecimal assembly code on AVRs please.

  • @embeddedbastler6406
    @embeddedbastler6406 3 роки тому +2

    Would you like to do a video about simple AVR bootloaders?

  • @GCKteamKrispy
    @GCKteamKrispy 2 роки тому

    Hmm, very interesting. I like your funny words, magic man

  • @GCKteamKrispy
    @GCKteamKrispy Рік тому

    Where do you write C code? Vim?

  • @m1geo
    @m1geo Рік тому

    At 3:37 you're all like "just blindly trust me" and then at 3:41 you're exiting "int main()" with no return value!
    You charlatan 😂😂😂 your ruse is up! 😉😂
    Seriously though. Nice demo!

  • @barunbasnet
    @barunbasnet 3 роки тому +1

    There was no external crystal connected, however the clock speed was set to 1MHz. Does that mean the Atiny has an internal clock set to that frequency?

    • @LowLevelTV
      @LowLevelTV  3 роки тому +2

      Yup! The AtTiny45/85 have internal clocks tunable up to 20 MHz.

  • @somakantamajumder5408
    @somakantamajumder5408 3 роки тому

    Led running forward and reverse code video please

  • @triularity
    @triularity 2 роки тому

    A few years ago, I was playing around with a ATTiny13.

  • @arindammajumder7781
    @arindammajumder7781 3 роки тому

    If i use 2000 pixel led programming then what is the steps

  • @thisisnotok2100
    @thisisnotok2100 2 роки тому

    This chip has some ROM memory set aside in it, and you're interfacing with those pins using the adurino? Am I following this correctly?

  • @somakantamajumder5408
    @somakantamajumder5408 3 роки тому

    Led chaser code please

  • @przemekbundy
    @przemekbundy 2 роки тому

    Hello. you are using a modern development environment. a to run the code. you are using dos-era commands. what's the point of that? greetings.

    • @KenJackson_US
      @KenJackson_US 2 роки тому

      What advantage does a cumbersome IDE provide?

    • @Henry-sv3wv
      @Henry-sv3wv 2 роки тому

      Huh? Oh, you mean the bash terminal and vim or neovim, it's what the cool Linux and Mac kids use:
      ua-cam.com/video/U-omALWIBos/v-deo.html

  • @bob-ny6kn
    @bob-ny6kn 2 роки тому +1

    "It's"

  • @metamud8686
    @metamud8686 2 роки тому

    That's not a 470 ohm resistor, it's a 1k.

  • @garymazzataz9350
    @garymazzataz9350 Рік тому

    its not the smallest, try the attiny10

  • @MD-vs9ff
    @MD-vs9ff 2 роки тому

    8 pins? Wimp. Call me when you've used a 6-pin chip.