Sorry, this entry is only available in 简体中文 and 繁體中文.
Sorry, this entry is only available in 简体中文 and 繁體中文.
Sorry, this entry is only available in 繁體中文.
V1.1 – 2016.2.25 Kernel version is updated to 3.4.6. Add mraa (0.9.0), upm (0.5.0) libraries and update CMake tool chains (2.8.11). Add video stream function. Add 86Duino_Tools directory in home/dmp, provide the useful tools. Add Servo86 library in 86Duino Linux SDK. Add a Make.SO file in every library (include cores) to build .so dynamic library. […]
Description Stops the watch dog timer. This function also turns off the ISR attached by the attachInterrupt(). Syntax TimerWDT.stop() Parameter None Retun None See also - initialize() - attachInterrupt() - detachInterrupt() Libraries Reference Home The text of the 86Duino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are […]
Description Decide if the system has ever been rebooted by the watchdog timer. Syntax TimerWDT.isResetByWDT() Parameter None Return This function will return the boolean value below: true:System reboot by watch dog timer false:System shut down normally, did not reboot by watch dog timer Example See also - reset() Libraries Reference Home The text of the […]
Description Reset the watchdog timer, also known as “kicking the dog” (Sets the watchdog timer counter to zero) Syntax TimerWDT.reset() Parameter None Return None Example Set up watch dog timer to watch dog mode and to reboot the system every 30 seconds. Simultaneously, reset the watch dog timer every 10 seconds to prevent system reboot. […]
Description Setup watch dog timer for specific time intervals. Syntax TimerWDT.setPeriod(time) Parameter time:time interval,the unit is microsecond (μs) Return None Example Set up watch dog timer to interrupt mode, turn the LED on and off every 200ms: See also - initialize() - attachInterrupt() - detachInterrupt() Libraries Reference Home The text of the 86Duino reference is […]
Description Turns off the ISR attached by the attachInterrupt(). Syntax TimerWDT.detachInterrupt() Paramenter None. Return None. See also - attachInterrupt() Libraries Reference Home The text of the 86Duino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.
Description This command specifies a named Interrupt Service Routine (ISR) to call on when an interrupt occurs. (Note: this function will only work when the timer is in interrupt mode) Syntax TimerWDT.attachInterrupt(isr) TimerWDT.attachInterrupt(isr, time) Parameters isr:The name of the function to be called whenever an interrupt event happens. time:Sets time duration and interval parameters (optional) […]