Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. OpenHardware.io
  3. 💬 Various bootloader files based on Optiboot 6.2

💬 Various bootloader files based on Optiboot 6.2

Scheduled Pinned Locked Moved OpenHardware.io
optiboot
164 Posts 18 Posters 63.7k Views 18 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • GertSandersG GertSanders

    @alexsh1

    I just loaded a blink sketch at 4800 baud using FTDI and that works with the following combination:

    Boot loader:
    0_1457554985438_optiboot_atmega328_08M1_004800_B0.hex

    Fuses:
    BlueBoard.menu.mhz.1Mi48= 1Mhz - internal 8MHz DIV 8 - 4K8 upload speed
    BlueBoard.menu.mhz.1Mi48.bootloader.low_fuses=0x62
    BlueBoard.menu.mhz.1Mi48.bootloader.high_fuses=0xDE
    BlueBoard.menu.mhz.1Mi48.build.f_cpu=1000000L
    BlueBoard.menu.mhz.1Mi48.upload.speed=4800
    BlueBoard.menu.mhz.1Mi48.bootloader.file=myoptiboot/optiboot_atmega328_08M1_004800_B0.hex

    You will have to strip the "0_1457554985438_" part from the uploaded filename.

    Loading the sketch is VERY slow, but it works perfectly. The Blink sketch blinks the led at 500ms on and 500ms off, and that is checked on the breadboard.

    Whether the processor actually runs at 1MHz I do not know for sure, since I have no frequency meter (still missing from my toolbox).

    I used an arduino as ISP to load the boot loader, and then used an FTDI interface (from Adafruit) to load the sketch while the atmega328 was plugged in a breadboard (Gammon style).

    Next I will try with the 9600 baud version at 1Mhz.

    alexsh1A Offline
    alexsh1A Offline
    alexsh1
    wrote on last edited by
    #26

    @GertSanders said:

    Next I will try with the 9600 baud version at 1Mhz.

    THanks
    I'm looking forward to this - 4800 is way too slow.
    I think the way to check the frequency is to time delay(1000); in the blink sketch...

    GertSandersG 1 Reply Last reply
    0
    • alexsh1A alexsh1

      @GertSanders said:

      Next I will try with the 9600 baud version at 1Mhz.

      THanks
      I'm looking forward to this - 4800 is way too slow.
      I think the way to check the frequency is to time delay(1000); in the blink sketch...

      GertSandersG Offline
      GertSandersG Offline
      GertSanders
      Hardware Contributor
      wrote on last edited by GertSanders
      #27

      @alexsh1

      I just tested with the 9600 baud version at 1MHz, and the blink sketch at 250ms, 500ms and 1000ms per on/off cycle. All rock solid and as expected.

      Here is the setup I tested the transfer with FTDI:

      0_1457556540048_IMG_7815.jpg

      0_1457556805834_IMG_7816.jpg

      I used the following combination:

      Boot loader:

      0_1457556618255_optiboot_atmega328_01M_009600_B0.hex

      Fuses:
      BlueBoard.menu.mhz.1Mi= 1Mhz - internal 8MHz DIV 8 - 9K6 upload speed
      BlueBoard.menu.mhz.1Mi.bootloader.low_fuses=0x62
      BlueBoard.menu.mhz.1Mi.bootloader.high_fuses=0xDE
      BlueBoard.menu.mhz.1Mi.build.f_cpu=1000000L
      BlueBoard.menu.mhz.1Mi.upload.speed=9600
      BlueBoard.menu.mhz.1Mi.bootloader.file=myoptiboot/optiboot_atmega328_01M_009600_B0.hex

      Also here the "0_1457556618255_" is added by uploading on this forum, strip when downloaded.

      Uploads were at twice the speed then before. Still slow, but acceptable.

      1 Reply Last reply
      2
      • alexsh1A Offline
        alexsh1A Offline
        alexsh1
        wrote on last edited by
        #28

        @GertSanders I have the same breadboard setup, but can only read serial and cannot upload a sketch (out of sync). My settings are the same as yours as per my post earlier on today so I reckon it must be something wrong with the wiring on the breadboard since "Uploading using Programmer" works fine. Not sure what it is as I checked it a few times today.

        GertSandersG 1 Reply Last reply
        0
        • alexsh1A alexsh1

          @GertSanders I have the same breadboard setup, but can only read serial and cannot upload a sketch (out of sync). My settings are the same as yours as per my post earlier on today so I reckon it must be something wrong with the wiring on the breadboard since "Uploading using Programmer" works fine. Not sure what it is as I checked it a few times today.

          GertSandersG Offline
          GertSandersG Offline
          GertSanders
          Hardware Contributor
          wrote on last edited by GertSanders
          #29

          @alexsh1
          Maybe make a picture of your setup?
          Upload using programmer means you use another Arduino to load the sketch on the atmega328, which at the same time deletes any bootloader.
          I load bootloaders with an Arduino and the sketch ArduinoISP loaded on that one. Then I issue a "burn bootloader" command.
          To load sketches I switch to my FTDI interface and upload sketches with the same processor setting. But as said with a different interface. And I do not use "upload using programmer", but the upload button next to the compile button.

          Maybe I should try to make a video like Mr Pete.

          alexsh1A 1 Reply Last reply
          0
          • GertSandersG GertSanders

            @alexsh1
            Maybe make a picture of your setup?
            Upload using programmer means you use another Arduino to load the sketch on the atmega328, which at the same time deletes any bootloader.
            I load bootloaders with an Arduino and the sketch ArduinoISP loaded on that one. Then I issue a "burn bootloader" command.
            To load sketches I switch to my FTDI interface and upload sketches with the same processor setting. But as said with a different interface. And I do not use "upload using programmer", but the upload button next to the compile button.

            Maybe I should try to make a video like Mr Pete.

            alexsh1A Offline
            alexsh1A Offline
            alexsh1
            wrote on last edited by alexsh1
            #30

            @GertSanders Yes, this is normally the way I do (burn bootloader and then upload a sketch via FTDI on the breadboard). Will post photos shortly.

            Are you sure "Upload using programmer" deleting the bootloader?

            alexsh1A 1 Reply Last reply
            0
            • alexsh1A alexsh1

              @GertSanders Yes, this is normally the way I do (burn bootloader and then upload a sketch via FTDI on the breadboard). Will post photos shortly.

              Are you sure "Upload using programmer" deleting the bootloader?

              alexsh1A Offline
              alexsh1A Offline
              alexsh1
              wrote on last edited by
              #31

              @GertSanders

              Are you sure "Upload using programmer" deleting the bootloader?

              Yes, looks like you are right - it kills the bootloader. So what's happening? I do not have any bootloader when I use this method to load up sketches?

              GertSandersG 1 Reply Last reply
              0
              • alexsh1A alexsh1

                @GertSanders

                Are you sure "Upload using programmer" deleting the bootloader?

                Yes, looks like you are right - it kills the bootloader. So what's happening? I do not have any bootloader when I use this method to load up sketches?

                GertSandersG Offline
                GertSandersG Offline
                GertSanders
                Hardware Contributor
                wrote on last edited by
                #32

                @alexsh1

                If you load a sketch with "Upload using programmer" you replace anything in flash with the sketch. Just the sketch will run on the mcu.

                In the very narrow node, there is no FTDI connector, so for those nodes it does not make sense to have a boot loader in flash (it does not hurt either). You couldvjust as well just load the sketch and skip the boot loader altogether.

                If you need the extra 512 that optiboot occupies, then "Upload using programmer" allows you to recuperate that space.

                So this shoudl explain why you can reed data from the Node via Serial (because the sketch is running and taking care of the serial connection), but why uploading a sketch fails, because for that you need a boot loader in flash.

                1 Reply Last reply
                0
                • alexsh1A Offline
                  alexsh1A Offline
                  alexsh1
                  wrote on last edited by
                  #33

                  @GertSanders

                  I did a short video how I upload optiboot

                  Finally, success!
                  I think I had to reassemble the breadboard set-up three times before finally being able to upload the sketch. I think the problem was no connection at RTS, but I am not sure. I need to assemble a more permanent board to upload sketches via FTDI.

                  1 Reply Last reply
                  0
                  • alexsh1A Offline
                    alexsh1A Offline
                    alexsh1
                    wrote on last edited by alexsh1
                    #34

                    FTDI Adapter

                    1 Reply Last reply
                    0
                    • alexsh1A Offline
                      alexsh1A Offline
                      alexsh1
                      wrote on last edited by
                      #35

                      My Set-up

                      1 Reply Last reply
                      0
                      • alexsh1A Offline
                        alexsh1A Offline
                        alexsh1
                        wrote on last edited by alexsh1
                        #36

                        @GertSanders if I load a sketch via Upload using programmer - how do I control the frequency? (1Mhz or 8Mhz internal or external crystal)

                        S 1 Reply Last reply
                        0
                        • alexsh1A alexsh1

                          @GertSanders if I load a sketch via Upload using programmer - how do I control the frequency? (1Mhz or 8Mhz internal or external crystal)

                          S Offline
                          S Offline
                          Samuel235
                          Hardware Contributor
                          wrote on last edited by Samuel235
                          #37

                          @alexsh1 - You would do this by setting the correct fuses. Can you just confirm my information @GertSanders :)

                          I would also like to state that Atmel does not support or even recommend using FTDI with the internal crystal, my current board just will not upload via FTDI and no external crystal however yet a arduino pro mini does and that uses an external crystal with no other circuitry compared to my board apart from the physical reset switch.

                          MySensors 2.1.1
                          Controller - OpenHAB (Virtual Machine)
                          Gateway - Arduino Mega MQTT Gateway W5100

                          alexsh1A 1 Reply Last reply
                          0
                          • S Samuel235

                            @alexsh1 - You would do this by setting the correct fuses. Can you just confirm my information @GertSanders :)

                            I would also like to state that Atmel does not support or even recommend using FTDI with the internal crystal, my current board just will not upload via FTDI and no external crystal however yet a arduino pro mini does and that uses an external crystal with no other circuitry compared to my board apart from the physical reset switch.

                            alexsh1A Offline
                            alexsh1A Offline
                            alexsh1
                            wrote on last edited by
                            #38

                            @samuel235 said:

                            @alexsh1 - You would do this by setting the correct fuses. Can you just confirm my information @GertSanders :)

                            I think you have a point, but if I do not change anything, just use "Upload using programmer", what are the default frequency and fuses?

                            S GertSandersG 2 Replies Last reply
                            0
                            • alexsh1A alexsh1

                              @samuel235 said:

                              @alexsh1 - You would do this by setting the correct fuses. Can you just confirm my information @GertSanders :)

                              I think you have a point, but if I do not change anything, just use "Upload using programmer", what are the default frequency and fuses?

                              S Offline
                              S Offline
                              Samuel235
                              Hardware Contributor
                              wrote on last edited by
                              #39

                              @alexsh1 If you haven't touched the ATmega328p then it should be sitting with fuses of; L:0x62 H:0xD9 E:0xFF, which would run the uC at 1MHz

                              MySensors 2.1.1
                              Controller - OpenHAB (Virtual Machine)
                              Gateway - Arduino Mega MQTT Gateway W5100

                              alexsh1A 1 Reply Last reply
                              0
                              • alexsh1A alexsh1

                                @samuel235 said:

                                @alexsh1 - You would do this by setting the correct fuses. Can you just confirm my information @GertSanders :)

                                I think you have a point, but if I do not change anything, just use "Upload using programmer", what are the default frequency and fuses?

                                GertSandersG Offline
                                GertSandersG Offline
                                GertSanders
                                Hardware Contributor
                                wrote on last edited by
                                #40

                                @*alexsh1
                                *
                                Which fuses are set when loading a boot loader is defined by wich menu element in tools you have selected. Every processor or board you choose will correspond with values in a board.txt file.

                                You can have several board.txt files: 1 file per "family" of boards.

                                When uploading sketches, the fusesettings are ignored, only the uploadspeed counts then. Both when uploading with Arduino as ISP as with FTDI interface.

                                The internal oscillator of 8 Mhz is not as accurate as a crystal, so at higher uploadspeeds the errorrate can increase or decrease depending on the mcu temperature.

                                Some uploadspeeds are closer to optimal then others in relation to the frequency at which the mcu works. The baudcalculator shows the errorrates. Most are non optimal. avrdude can handle an errorrate of 2% or less. So using a specific baudrate in combination with the internal 8Mhz oscillator depends on the worst case combination of transmission errorrate plus clock deviation error.

                                For most mcu's the rate of 9600 baud will be acceptable because at that slow rate a clockerror will be relative small. At higher speeds the small clockerror becomes more important. Then it is best to choose an upload speed close to the optimum.

                                The fusesettings are only burnt when loading a boot loader (within the Arduino IDE, in AVRStudio you can set fuses seperatly from loading anything).

                                The frequency of 8 Mhz can be obtained via a 8mhz crystal or the internal 8mhz oscillator. The low fuse value 0xE2 sets this internal oscillator. By using value 0x62 you also set the clock division bit in combination with the 8mhz internal oscillator, so your mcu will run at 8mhz / 8 = 1mhz

                                There are other division values possible. Calculate the low byte value using an avr fuse calculator.

                                You can also use an external 8 mhz crystal, and combine this with clock division by 8 to get 1mhz operation.

                                And you can choose an external 1mhz crystal.

                                All this from choose the right fuse bits.

                                Same for Brown out Detection which is set via the three least significant bits of the extended fuse.

                                1 Reply Last reply
                                3
                                • S Samuel235

                                  @alexsh1 If you haven't touched the ATmega328p then it should be sitting with fuses of; L:0x62 H:0xD9 E:0xFF, which would run the uC at 1MHz

                                  alexsh1A Offline
                                  alexsh1A Offline
                                  alexsh1
                                  wrote on last edited by
                                  #41

                                  @samuel235 This is strange. The serial monitor was working only on 74880 - I do not think the AVR was running @ 1Mhz

                                  1 Reply Last reply
                                  0
                                  • alexsh1A Offline
                                    alexsh1A Offline
                                    alexsh1
                                    wrote on last edited by alexsh1
                                    #42

                                    @GertSanders Thanks for a detailed write-up!

                                    @GertSanders said:

                                    You can also use an external 8 mhz crystal, and combine this with clock division by 8 to get 1mhz operation.

                                    And you can choose an external 1mhz crystal.

                                    How is this influencing low power though? My understanding is that such setup (external crystal) takes more power.

                                    GertSandersG 1 Reply Last reply
                                    0
                                    • alexsh1A alexsh1

                                      @GertSanders Thanks for a detailed write-up!

                                      @GertSanders said:

                                      You can also use an external 8 mhz crystal, and combine this with clock division by 8 to get 1mhz operation.

                                      And you can choose an external 1mhz crystal.

                                      How is this influencing low power though? My understanding is that such setup (external crystal) takes more power.

                                      GertSandersG Offline
                                      GertSandersG Offline
                                      GertSanders
                                      Hardware Contributor
                                      wrote on last edited by
                                      #43

                                      @alexsh1

                                      Using a 1mhz crystal would not be the best thing for low power use, you are correct there.

                                      But it gives a more accurate clock base for the timing functions.

                                      1 Reply Last reply
                                      0
                                      • alexsh1A Offline
                                        alexsh1A Offline
                                        alexsh1
                                        wrote on last edited by
                                        #44

                                        Not sure what happened, but the following error returned:

                                        
                                        
                                        
                                        
                                        Board atmega328p:avr:atmega328pO5M8c doesn't define a 'build.board' preference. Auto-set to: AVR_ATMEGA328PO5M8C
                                        Board atmega328p:avr:atmega328pO5M16c doesn't define a 'build.board' preference. Auto-set to: AVR_ATMEGA328PO5M16C
                                        

                                        I did not change anything so very strange why it comes up.

                                        1 Reply Last reply
                                        0
                                        • S Offline
                                          S Offline
                                          Samuel235
                                          Hardware Contributor
                                          wrote on last edited by
                                          #45

                                          Actually, i have no proof but i've been informed from the arduino standalone microcontroller forums, that using a external 8mhz crystal is good for power consumption. ONLY if its a sleeping module though, it enables it to perform its tasks quicker and then sleep quicker, resulting in more time sleeping.

                                          That error code is something i ran into, i'm guessing you're working inside of arduino IDE, if so its to do with your boards.txt entry. Its missing that entry that it speak about. Check that its there, if not enter it in manually.

                                          MySensors 2.1.1
                                          Controller - OpenHAB (Virtual Machine)
                                          Gateway - Arduino Mega MQTT Gateway W5100

                                          alexsh1A 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          14

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • MySensors
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular