UartBus source documentation
UbbPowerFunctions.java
1 package eu.javaexperience.electronic.uartbus.rpc.client.device.fns.ubb;
2 
6 
7 public interface UbbPowerFunctions extends UbDeviceNs
8 {
9  /**
10  * Reset using the watchdog timer
11  * */
12  @UbIndex(ns=0)
13  public NoReturn hardwareReset();
14 
15  /**
16  * reset by jumping to the reset vector
17  * */
18  @UbIndex(ns=1)
19  public NoReturn softwareReset();
20 }