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. Has anyone tried software reset of an Arduino?

Has anyone tried software reset of an Arduino?

Scheduled Pinned Locked Moved Development
21 Posts 8 Posters 12.0k Views 9 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.
  • T TheoL

    I used it in a test sketch.

    void(* resetFunc) (void) = 0; //declare reset function @ address 0
    
    void loop() {
      if ( Serial.available() ) {
        // read the incoming byte:
        char incomingByte = Serial.read();
    
        // say what you got:
        Serial.print("I received: ");
        Serial.println(incomingByte, DEC );
        if ( incomingByte == 115 ) {
          Serial.println( "Resetting??" );
          gw.wait(50 ); // give serial some time to complete it's printing
          resetFunc();  //call reset
        }
      }
      gw.process();
    }
    

    And the Serial output is:

    Resetting??
    send: 17-17-0-0 s=255,c=3,t=15,pt=2,l=2,sg=0,st=ok:0
    send: 17-17-0-0 s=255,c=0,t=17,pt=0,l=5,sg=0,st=ok:1.5.4
    send: 17-17-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0,st=ok:0
    read: 0-0-17 s=255,c=3,t=6,pt=0,l=1,sg=0:M
    sensor started, id=17, parent=0, distance=1
    

    So on my Uno it seems to wok fine. Looks promissing

    Y Offline
    Y Offline
    Yveaux
    Mod
    wrote on last edited by
    #3

    @TheoL another way to reset is to enable the watchdog, but don't kick it. When it times out, it will reset the avr.
    Have to look up an example if you want.

    http://yveaux.blogspot.nl

    T K 2 Replies Last reply
    0
    • Y Yveaux

      @TheoL another way to reset is to enable the watchdog, but don't kick it. When it times out, it will reset the avr.
      Have to look up an example if you want.

      T Offline
      T Offline
      TheoL
      Contest Winner
      wrote on last edited by
      #4

      @Yveaux Thank you for your quick reply. Don't ask why, but I need to be able to reset a node by sending a message to it ;-). It's desired functionality not because of hardware problems.

      Y 1 Reply Last reply
      0
      • T TheoL

        @Yveaux Thank you for your quick reply. Don't ask why, but I need to be able to reset a node by sending a message to it ;-). It's desired functionality not because of hardware problems.

        Y Offline
        Y Offline
        Yveaux
        Mod
        wrote on last edited by
        #5

        @TheoL could very well be that 2.0.0 already supports it. Maybe @tekka can shed some light on it ?

        http://yveaux.blogspot.nl

        T 1 Reply Last reply
        1
        • Y Yveaux

          @TheoL could very well be that 2.0.0 already supports it. Maybe @tekka can shed some light on it ?

          T Offline
          T Offline
          TheoL
          Contest Winner
          wrote on last edited by
          #6

          @Yveaux That would be awesome. Saves me from code that might not be cross Arduino compatible. As I read somewhere during my research.

          T 1 Reply Last reply
          0
          • T TheoL

            @Yveaux That would be awesome. Saves me from code that might not be cross Arduino compatible. As I read somewhere during my research.

            T Offline
            T Offline
            tekka
            Admin
            wrote on last edited by
            #7

            @TheoL sending an C_INTERNAL/I_REBOOT will do the job, it's a wdt reset.

            T 1 Reply Last reply
            2
            • T tekka

              @TheoL sending an C_INTERNAL/I_REBOOT will do the job, it's a wdt reset.

              T Offline
              T Offline
              TheoL
              Contest Winner
              wrote on last edited by TheoL
              #8

              @tekka Thank you. Not yet sure how to do that. If you have an example for that I would be much obliged. Otherwise I'll spend some time on that later on. Either way, thanx again.

              Edited: Found it will update this answer later on with code

              Edit 2. My test didn't work, but I will try again tomorrow

              1 Reply Last reply
              0
              • Y Yveaux

                @TheoL another way to reset is to enable the watchdog, but don't kick it. When it times out, it will reset the avr.
                Have to look up an example if you want.

                K Offline
                K Offline
                Koresh
                Contest Winner
                wrote on last edited by Koresh
                #9

                @Yveaux
                Watchdog is used by sleep() function in mysensors, so it is not possible to use it. Also it is not safe to use it on arduino boards with standard bootloader. If I need watchdog on standard arduino boards (without mysensors library) with standard bootloader I use next ISR to handle WDT interrupt

                // Watchdog Timer interrupt service routine. This routine is required
                // to allow automatic WDIF and WDIE bit clearance in hardware.
                ISR (WDT_vect)
                {
                	// WDIE & WDIF is cleared in hardware upon entering this ISR
                	wdt_disable();
                	asm volatile ("  jmp 0");
                }
                

                This ISR prevents bootloop.
                If I need just soft reset arduino I use the technique very similar to TheoL's

                asm volatile ("  jmp 0"); //call anywhere
                
                T T 2 Replies Last reply
                1
                • K Koresh

                  @Yveaux
                  Watchdog is used by sleep() function in mysensors, so it is not possible to use it. Also it is not safe to use it on arduino boards with standard bootloader. If I need watchdog on standard arduino boards (without mysensors library) with standard bootloader I use next ISR to handle WDT interrupt

                  // Watchdog Timer interrupt service routine. This routine is required
                  // to allow automatic WDIF and WDIE bit clearance in hardware.
                  ISR (WDT_vect)
                  {
                  	// WDIE & WDIF is cleared in hardware upon entering this ISR
                  	wdt_disable();
                  	asm volatile ("  jmp 0");
                  }
                  

                  This ISR prevents bootloop.
                  If I need just soft reset arduino I use the technique very similar to TheoL's

                  asm volatile ("  jmp 0"); //call anywhere
                  
                  T Offline
                  T Offline
                  TheoL
                  Contest Winner
                  wrote on last edited by
                  #10

                  @Koresh I haven't seen assembler for a while. Do you use that on all of your projects?

                  K 1 Reply Last reply
                  0
                  • T TheoL

                    @Koresh I haven't seen assembler for a while. Do you use that on all of your projects?

                    K Offline
                    K Offline
                    Koresh
                    Contest Winner
                    wrote on last edited by
                    #11

                    @TheoL
                    In general - no. Only for such tricks :) Of course these tricks are not invented by me.

                    T 1 Reply Last reply
                    0
                    • K Koresh

                      @TheoL
                      In general - no. Only for such tricks :) Of course these tricks are not invented by me.

                      T Offline
                      T Offline
                      TheoL
                      Contest Winner
                      wrote on last edited by
                      #12

                      @Koresh I understand my friend ;-) Although I have deep respect for people who are able to code completely in assembly. For me that was ages ago, almost in another life.

                      1 Reply Last reply
                      0
                      • K Koresh

                        @Yveaux
                        Watchdog is used by sleep() function in mysensors, so it is not possible to use it. Also it is not safe to use it on arduino boards with standard bootloader. If I need watchdog on standard arduino boards (without mysensors library) with standard bootloader I use next ISR to handle WDT interrupt

                        // Watchdog Timer interrupt service routine. This routine is required
                        // to allow automatic WDIF and WDIE bit clearance in hardware.
                        ISR (WDT_vect)
                        {
                        	// WDIE & WDIF is cleared in hardware upon entering this ISR
                        	wdt_disable();
                        	asm volatile ("  jmp 0");
                        }
                        

                        This ISR prevents bootloop.
                        If I need just soft reset arduino I use the technique very similar to TheoL's

                        asm volatile ("  jmp 0"); //call anywhere
                        
                        T Offline
                        T Offline
                        tekka
                        Admin
                        wrote on last edited by tekka
                        #13

                        @Koresh said:

                        Watchdog is used by sleep() function in mysensors, so it is not possible to use it.

                        Not sure what you are referring to, sleep() uses WDIE (wdt interrupt before reset, see here) whereas the reboot functionality is implemented via wdt reset (see here).

                        Also it is not safe to use it on arduino boards with standard bootloader.

                        Can you elaborate why?

                        K 1 Reply Last reply
                        0
                        • S Offline
                          S Offline
                          scalz
                          Hardware Contributor
                          wrote on last edited by scalz
                          #14

                          @Koresh @TheoL i use wdt with mysensors..but i cheated a bit :)

                          • you can use your own sleep and then handle wdt, but then careful if really need mysensors sleep(x ms) as it resets wdt.
                          • or as i do too, i have added a weak empty function in mysensors lib to have isr wdt available from sketch ;), temporarily I will submit a pr for the few features i have added locally..
                          1 Reply Last reply
                          1
                          • T tekka

                            @Koresh said:

                            Watchdog is used by sleep() function in mysensors, so it is not possible to use it.

                            Not sure what you are referring to, sleep() uses WDIE (wdt interrupt before reset, see here) whereas the reboot functionality is implemented via wdt reset (see here).

                            Also it is not safe to use it on arduino boards with standard bootloader.

                            Can you elaborate why?

                            K Offline
                            K Offline
                            Koresh
                            Contest Winner
                            wrote on last edited by
                            #15

                            @tekka
                            Standard bootloader can fail to switch off wdt after reboot (on the boards with most chips) and it will cause bootloop. After rebooting watchog is still working and it is very important to disable it. We can use modified bootloader or bootloader like optiboot.

                            1 Reply Last reply
                            1
                            • S Offline
                              S Offline
                              scalz
                              Hardware Contributor
                              wrote on last edited by scalz
                              #16

                              @tekka I am not sure I will let answer, but if i remember well it was related to a problem that some old bootloader version were not handling properly wdt irq resulting in bootloader loop.

                              ISR (WDT_vect) is used by mysensors lib if using mysensors sleep.

                              but you can do something like:
                              in MyHwATMega328.h

                              void MY_WDT_Callback() __attribute__((weak));
                              

                              in MyHwATMega328.cpp, just add this in the wdt isr function

                              if (MY_WDT_Callback) MY_WDT_Callback();
                              

                              and finally in your sketch you can use MY_WDT_Callback() which will be fired at every wdt irq. Something like

                              void MY_WDT_Callback()   
                              {
                                wdt_reset(); // or do what you want
                                irqWdt = true;
                              }
                              

                              maybe there are better ways. another note, is I don't advice to do too much change locally without pr because then..arrghh :pensive: :scream:

                              1 Reply Last reply
                              0
                              • T Offline
                                T Offline
                                TheoL
                                Contest Winner
                                wrote on last edited by
                                #17

                                I when you thought you finally knew a bit about the Arduino, there comes a topic like this ;-) Thanx to you all. I understand to I have still much to learn.

                                1 Reply Last reply
                                0
                                • B Offline
                                  B Offline
                                  bjacobse
                                  wrote on last edited by bjacobse
                                  #18

                                  Hi, as I remember about watchdog is to set it to 8S, so there is enough time to upload an sketch (8 seconds) before the Arduino will reboot. WDT0_time_in_seconds. If using WDT08S Always call the wdt_reset() no later than 7 seconds to avoid reset/reboot. This is usually used in case that the Arduino/avr is "hanging" in an infinite loop and stopped responding to actions, then this will automatically reset/reboot

                                  Include this in your sketch:
                                  #include <avr/wdt.h>

                                  setup ();{
                                  // WDTO_1S
                                  // WDTO_2S
                                  // WDTO_4S
                                  // WDTO_8S
                                  wdt_enable(WDTO_8S);
                                  }

                                  loop (){
                                  wdt_reset(); // You must call this within less seconds set as WDT0_8S
                                  }

                                  1 Reply Last reply
                                  0
                                  • T Offline
                                    T Offline
                                    ToniA
                                    wrote on last edited by
                                    #19

                                    For whatever strange reason, the Arduino stock bootloader is broken, so that it will not disable the watchdog on startup, causing just an infinite reset loop. I'd recommend updating the bootloader with something like MYSBootloader or Optiboot.

                                    1 Reply Last reply
                                    1
                                    • D Offline
                                      D Offline
                                      donnacarter0103
                                      Banned
                                      wrote on last edited by mfalkvidd
                                      #20

                                      Hey Buddy,

                                      [spam post removed by moderator]

                                      B 1 Reply Last reply
                                      0
                                      • D donnacarter0103

                                        Hey Buddy,

                                        [spam post removed by moderator]

                                        B Offline
                                        B Offline
                                        bjacobse
                                        wrote on last edited by
                                        #21

                                        @donnacarter0103

                                        The third way to reset an Arduino is to use watchdog (Need to flash another bootloader as the default have disabled watchdog), enable watchdog, and remember to reset it often in your code, else it will reste the Arduino

                                        1 Reply Last reply
                                        0

                                        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                        With your input, this post could be even better 💗

                                        Register Login
                                        Reply
                                        • Reply as topic
                                        Log in to reply
                                        • Oldest to Newest
                                        • Newest to Oldest
                                        • Most Votes


                                        14

                                        Online

                                        12.0k

                                        Users

                                        11.2k

                                        Topics

                                        113.4k

                                        Posts


                                        Copyright 2025 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