Tutorial: How to save settings to MCU's EEPROM memory

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

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

  • @KrisKasprzak
    @KrisKasprzak  2 ปีที่แล้ว +1

    If you are wondering how much memory EEPROM code consumes:
    On a Teensy 3.2 Airduino IDE 1.8.13
    #include
    EEPROM.put,
    EEPROM.get
    Compiled to 11140 bytes
    Removing
    #include
    EEPROM.put,
    EEPROM.get
    Compiled to 7016 bytes

  • @alanbacknd3120
    @alanbacknd3120 2 ปีที่แล้ว +1

    Great job,
    I always learn something new from you.
    Thanks

  • @Nputaansuu
    @Nputaansuu ปีที่แล้ว +1

    This is the info I was looking for. It is well presented with one exception. I had to type the program in from the info in the video. 2 hours later, I am still getting some compile errors and sorting it out. Many of the tutorial I really like have the code that I can copy and paste. It seems I don't type what is on the screen so well. Thanks for the video.

  • @7alfatech860
    @7alfatech860 2 ปีที่แล้ว

    Nice video, thanks. How much of the main program memory is used up by invoking the EEPROM?

    • @KrisKasprzak
      @KrisKasprzak  2 ปีที่แล้ว +1

      It looks like around 4K for 1 put and 1 get

    • @7alfatech860
      @7alfatech860 2 ปีที่แล้ว

      @@KrisKasprzak Thanks