Restart UDOO

Discussion in 'General Discussion' started by hillcz, Nov 26, 2013.

  1. hillcz

    hillcz Member

    Joined:
    Oct 3, 2013
    Messages:
    72
    Likes Received:
    1
    Is possible restart Atmel from MX6 and MX6 from Atmel?? (Watchdog)
    Thx
     
  2. delba

    delba Administrator Staff Member

    Joined:
    May 8, 2013
    Messages:
    1,064
    Likes Received:
    9
    You can keep the Atmel in RESET mode (for a low power consumption) from i.MX6 by using:

    Code:
    echo out > /sys/class/gpio/gpio0/direction
    
    echo 0 > /sys/class/gpio/gpio0/value
    you can wake it up again with

    Code:
    echo 1 > /sys/class/gpio/gpio0/value
    You can't do the opposite 'cause if you restart the i.MX6 the Atmel will restart as well.
     
  3. hillcz

    hillcz Member

    Joined:
    Oct 3, 2013
    Messages:
    72
    Likes Received:
    1
    Udoo is just perfect. :-D
    And is possible HW/SW Watchdog on MX6?
    THX for support
     
  4. Lifeboat_Jim

    Lifeboat_Jim New Member

    Joined:
    Sep 16, 2013
    Messages:
    399
    Likes Received:
    1
    It's an advanced topic but I have had a look through the Atmel SAM3X8E and Freescale i.MX6 Datasheets, to explore the power saving states etc.

    I can see several Use Cases where it would be desirable to drop down into a lower state for extended periods of time without being off.

    Something to explore in the future for sure!
     
  5. hillcz

    hillcz Member

    Joined:
    Oct 3, 2013
    Messages:
    72
    Likes Received:
    1
    And WatchDog on MX.6 is it functional?
     
  6. delba

    delba Administrator Staff Member

    Joined:
    May 8, 2013
    Messages:
    1,064
    Likes Received:
    9
    of course.
     
  7. DracoLlasa

    DracoLlasa UDOOer

    Joined:
    Oct 15, 2013
    Messages:
    419
    Likes Received:
    3
    I am going to have to hook up all my power testing equipment and see how much of a measurable difference this makes.
    This is good info!! Thanks Delba !
     

Share This Page