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. Development
  3. MYSBootloader 1.3.0-beta.3

MYSBootloader 1.3.0-beta.3

Scheduled Pinned Locked Moved Development
182 Posts 44 Posters 59.4k Views 42 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.
  • J Offline
    J Offline
    jacikaas
    wrote on last edited by
    #56

    Hi,

    Is there going to be 1 and 8MHz MySBootloader hex files? :)

    Thanks!

    1 Reply Last reply
    0
    • J Offline
      J Offline
      jkandasa
      Plugin Developer
      wrote on last edited by
      #57

      @tekka, I tested this bootloader and facing an issue.
      https://github.com/mysensors/MySensorsBootloaderRF24/issues/7

      1 Reply Last reply
      0
      • AndurilA Offline
        AndurilA Offline
        Anduril
        wrote on last edited by
        #58

        How do I do a remote reboot of a node? Node is not responding to MYSController command (I think due to changed things as with reassigning node-ID). DO I have to write a receive event or enable it somehow? Node is sleeping most time, maybe that's a problem.

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

          I'm very interested in testing your development for the latest MYSBootloader as the bootloader for OTA updates on my new hardware designs that i'm starting to design, but i would like a stable one first to make sure my system and setup are working fine with the stable. Is the stable bootloader the one in the master branch of https://github.com/mysensors/MySensorsBootloaderRF24/tree/master. The MYSBootloader.hex file or does this still need to be compiled for use?

          Or do you happen to have a download link for the stable version, should we be using the one that you bundle together with MYSController?

          Also, @tekka - Do you advise a stable one that works for MyController.org please?

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

          1 Reply Last reply
          0
          • Nicolas CharrierN Offline
            Nicolas CharrierN Offline
            Nicolas Charrier
            wrote on last edited by
            #60

            With this bootloader, i can not upload scetch with serial or USB.
            Where does i made a mistake?
            Is there a configuration that is specific to the bootloader?
            Thanks

            tekkaT 1 Reply Last reply
            0
            • Nicolas CharrierN Nicolas Charrier

              With this bootloader, i can not upload scetch with serial or USB.
              Where does i made a mistake?
              Is there a configuration that is specific to the bootloader?
              Thanks

              tekkaT Offline
              tekkaT Offline
              tekka
              Admin
              wrote on last edited by
              #61

              @Nicolas-Charrier Welcome to MySensors. Please do not post the same question in different threads. Maybe you can give additional information that help to understand what you tried so far (logs, screenshots, HW configuration, CPU frequency, etc.). Did you follow the OTA/bootloader instructions here?

              Nicolas CharrierN AffordableTechA 2 Replies Last reply
              1
              • tekkaT tekka

                @Nicolas-Charrier Welcome to MySensors. Please do not post the same question in different threads. Maybe you can give additional information that help to understand what you tried so far (logs, screenshots, HW configuration, CPU frequency, etc.). Did you follow the OTA/bootloader instructions here?

                Nicolas CharrierN Offline
                Nicolas CharrierN Offline
                Nicolas Charrier
                wrote on last edited by
                #62

                @tekka
                I can now program my board with serial line. It's work perfectly.
                It's an issue with my serial converteur and an usb hub. The usb hub add a delay that is not compatible with the bootloader.
                Sorry for the question.
                Nico

                tekkaT 1 Reply Last reply
                0
                • Nicolas CharrierN Nicolas Charrier

                  @tekka
                  I can now program my board with serial line. It's work perfectly.
                  It's an issue with my serial converteur and an usb hub. The usb hub add a delay that is not compatible with the bootloader.
                  Sorry for the question.
                  Nico

                  tekkaT Offline
                  tekkaT Offline
                  tekka
                  Admin
                  wrote on last edited by
                  #63

                  @Nicolas-Charrier Good to know, thanks for your feedback :)

                  1 Reply Last reply
                  0
                  • kk02067K Offline
                    kk02067K Offline
                    kk02067
                    wrote on last edited by
                    #64

                    Excuse me for beeing an idiot. But how do you compile the bootloader from source? Do you do it from Atmel studio or from Arduino IDE. And how is it done? When I compile it in Atmel studio it gets an base adress of 0x0000 which is wrong.

                    I am used to program in assembler in Atmel studio and when I program in C i don't touch anyting else than the .c file. So some form of tutorial kind of thing would be helpful.

                    Thank you

                    1 Reply Last reply
                    0
                    • R Offline
                      R Offline
                      rvweert
                      wrote on last edited by
                      #65

                      Hey all,

                      I've compiled the bootloader and was able to install it with Arduino as ISP to a Nano. I couldn't find the lines necessary for the Nano in boards.txt so I created this:

                      ##############################################################
                      
                      nanomysbootloader.name=Arduino Nano MYSBootloader
                      
                      nanomysbootloader.upload.tool=avrdude
                      nanomysbootloader.upload.protocol=arduino
                      
                      nanomysbootloader.bootloader.tool=avrdude
                      nanomysbootloader.bootloader.unlock_bits=0x3F
                      nanomysbootloader.bootloader.lock_bits=0x0F
                      
                      nanomysbootloader.build.f_cpu=16000000L
                      nanomysbootloader.build.board=AVR_NANO
                      nanomysbootloader.build.core=arduino
                      nanomysbootloader.build.variant=eightanaloginputs
                      
                      ## Arduino Nano w/ ATmega328
                      ## -------------------------
                      nanomysbootloader.menu.cpu.atmega328=ATmega328
                      
                      nanomysbootloader.menu.cpu.atmega328.upload.maximum_size=30720
                      nanomysbootloader.menu.cpu.atmega328.upload.maximum_data_size=2048
                      nanomysbootloader.menu.cpu.atmega328.upload.speed=115200
                      
                      nanomysbootloader.menu.cpu.atmega328.bootloader.low_fuses=0xFF
                      nanomysbootloader.menu.cpu.atmega328.bootloader.high_fuses=0xDA
                      nanomysbootloader.menu.cpu.atmega328.bootloader.extended_fuses=0xFD
                      nanomysbootloader.menu.cpu.atmega328.bootloader.file=MySensors/MYSBootloader.hex
                      nanomysbootloader.menu.cpu.atmega328.build.mcu=atmega328p
                      
                      

                      Is this correct? Besides, on some devices I cannot program over serial anymore now, only through another ISP. Could that be caused by incorrect settings? Is it possible to recover from that?
                      The error I'm getting is this one:
                      avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x32

                      Thanks and happy easter!
                      Rene

                      1 Reply Last reply
                      0
                      • tekkaT tekka

                        @Nicolas-Charrier Welcome to MySensors. Please do not post the same question in different threads. Maybe you can give additional information that help to understand what you tried so far (logs, screenshots, HW configuration, CPU frequency, etc.). Did you follow the OTA/bootloader instructions here?

                        AffordableTechA Offline
                        AffordableTechA Offline
                        AffordableTech
                        wrote on last edited by
                        #66

                        Hi All,

                        I'm currently upgrading to MySensors 2.0.0 and it would make sense to change over to the MYSBootloader as I upgrade each node. (I'd like to be able to use the remote re-boot command from MYSController).

                        I have been reading about the MYSBootloader and have some questions . . .

                        Q1 - My nodes are a mixture of Pro-Micro's, Leonardo's, Mega 2560's and the odd UNO. From what I can see, the MYSbootloader.hex file is for the Mega328p, is this correct, or can the same bootloader be adjusted (fuse settings etc) for others like the Leonardo processor?

                        Q2 - One post I read seemed to imply that to use the remote reboot feature you needed 'either' the MYSBootloader OR OptiBoot. In the OptiBoot readme, it doesn't mention reboot as a feature, so I am wondering if it really does support reboot - can anyone please confirm?

                        Many thanks,

                        Paul

                        1 Reply Last reply
                        0
                        • hekH Offline
                          hekH Offline
                          hek
                          Admin
                          wrote on last edited by
                          #67

                          Q1) Yes, correct.
                          Q2) The reboot is handled automatically when new firmware has been downloaded by the library. Note: When using DualOptiboot you must also enable the MY_OTA_FIRMWARE_FEATURE when compiling the sketch to allow updates.

                          1 Reply Last reply
                          0
                          • S Offline
                            S Offline
                            studzin
                            wrote on last edited by
                            #68

                            Hi,
                            Is it possible to add support for rs485 network? In my opinion bootloader which exists need only de-pin management. I'm using hardware serial (rx tx) in nod's.

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              slt1
                              wrote on last edited by
                              #69

                              Can someone please tell me how long it is supposed to take to upload a hex file with MYSBootloader. I am trying out OTA Updates with the latest dev branch of MYSBootloader and it takes almost 2 hours to upload a 64k hex file. Is this normal or should it be a lot quicker?

                              1 Reply Last reply
                              0
                              • gohanG Offline
                                gohanG Offline
                                gohan
                                Mod
                                wrote on last edited by
                                #70

                                How far is the node from gateway? It should take much less time actually

                                S 1 Reply Last reply
                                0
                                • gohanG gohan

                                  How far is the node from gateway? It should take much less time actually

                                  S Offline
                                  S Offline
                                  slt1
                                  wrote on last edited by
                                  #71

                                  @gohan I have tried 2 different nodes in 2 different locations. The one node is about 8m away from the gateway. The other node is around 12m away.

                                  1 Reply Last reply
                                  0
                                  • gohanG Offline
                                    gohanG Offline
                                    gohan
                                    Mod
                                    wrote on last edited by
                                    #72

                                    Ok, if you put it like 2 meters away do you notice any difference?

                                    S 1 Reply Last reply
                                    0
                                    • gohanG gohan

                                      Ok, if you put it like 2 meters away do you notice any difference?

                                      S Offline
                                      S Offline
                                      slt1
                                      wrote on last edited by
                                      #73

                                      @gohan Seems to be taking the same time at 2 meters apart. Can you tell me how long it should take to do an OTA update? You say "much less time" .. what should it take for a 64k update?

                                      1 Reply Last reply
                                      0
                                      • gohanG Offline
                                        gohanG Offline
                                        gohan
                                        Mod
                                        wrote on last edited by
                                        #74

                                        I don't have direct experience (I am waiting for my mini pro to be delivered) but I read other sending in around 10 minutes but I don't know what was the hex file size.
                                        I asked for the distance just to make sure it wasn't related to range issues.

                                        1 Reply Last reply
                                        0
                                        • S Offline
                                          S Offline
                                          slt1
                                          wrote on last edited by
                                          #75

                                          I am getting good range here. I have a repeater node (not using MYSBootloader yet) that is 100m away and works fine and another node 200 to 300m away (hence the repeater at 100m). The far node was dropping some messages but that is not too critical as its only a water tank level sensor. I plan to put in a long range PA+SMA type nrf24L01 on that one. The gateway and repeater already have the long range nrf's. I am now testing OTA to a weather station node that is just outside - around 10m from gateway. And I have a test node on my desk around 8m from the gateway. Both the weather station and the test node on my desk give same results for OTA - around 30min or so for every 20k of hex file.

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


                                          11

                                          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