Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Revision:
55:d722ed6a4237
Parent:
54:71b101360fb9
Child:
59:0883845fe643
--- a/sleep_api.h	Tue Jan 08 12:46:36 2013 +0000
+++ b/sleep_api.h	Wed Jan 16 12:56:34 2013 +0000
@@ -31,31 +31,31 @@
 #endif
 
 /** Send the microcontroller to sleep
- * 
+ *
  * The processor is setup ready for sleep, and sent to sleep using __WFI(). In this mode, the
- * system clock to the core is stopped until a reset or an interrupt occurs. This eliminates 
- * dynamic power used by the processor, memory systems and buses. The processor, peripheral and 
+ * system clock to the core is stopped until a reset or an interrupt occurs. This eliminates
+ * dynamic power used by the processor, memory systems and buses. The processor, peripheral and
  * memory state are maintained, and the peripherals continue to work and can generate interrupts.
- * 
+ *
  * The processor can be woken up by any internal peripheral interrupt or external pin interrupt.
- * 
+ *
  * @note
- *  The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored. 
+ *  The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored.
  * Flash re-programming and the USB serial port will remain active, but the mbed program will no longer be
  * able to access the LocalFileSystem
  */
 void sleep(void);
 
 /** Send the microcontroller to deep sleep
- * 
+ *
  * This processor is setup ready for deep sleep, and sent to sleep using __WFI(). This mode
  * has the same sleep features as sleep plus it powers down peripherals and clocks. All state
- * is still maintained. 
- * 
+ * is still maintained.
+ *
  * The processor can only be woken up by an external interrupt on a pin or a watchdog timer.
- * 
+ *
  * @note
- *  The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored. 
+ *  The mbed interface semihosting is disconnected as part of going to sleep, and can not be restored.
  * Flash re-programming and the USB serial port will remain active, but the mbed program will no longer be
  * able to access the LocalFileSystem
  */