Support for MSP430 launchpad.

Fork of mbed by mbed official

Revision:
55:d722ed6a4237
Parent:
54:71b101360fb9
Child:
59:0883845fe643
--- a/rtc_time.h	Tue Jan 08 12:46:36 2013 +0000
+++ b/rtc_time.h	Wed Jan 16 12:56:34 2013 +0000
@@ -29,8 +29,8 @@
 /** Implementation of the C time.h functions
  *
  * Provides mechanisms to set and read the current time, based
- * on the microcontroller Real-Time Clock (RTC), plus some 
- * standard C manipulation and formating functions. 
+ * on the microcontroller Real-Time Clock (RTC), plus some
+ * standard C manipulation and formating functions.
  *
  * Example:
  * @code
@@ -38,18 +38,18 @@
  *
  * int main() {
  *     set_time(1256729737);  // Set RTC time to Wed, 28 Oct 2009 11:35:37
- *      
- *     while(1) {    
+ *
+ *     while(1) {
  *         time_t seconds = time(NULL);
- *         
+ *
  *         printf("Time as seconds since January 1, 1970 = %d\n", seconds);
- *  
+ *
  *         printf("Time as a basic string = %s", ctime(&seconds));
  *
  *         char buffer[32];
  *         strftime(buffer, 32, "%I:%M %p\n", localtime(&seconds));
  *         printf("Time as a custom formatted string = %s", buffer);
- *    
+ *
  *         wait(1);
  *     }
  * }
@@ -59,10 +59,10 @@
 /** Set the current time
  *
  * Initialises and sets the time of the microcontroller Real-Time Clock (RTC)
- * to the time represented by the number of seconds since January 1, 1970 
- * (the UNIX timestamp). 
- * 
- * @param t Number of seconds since January 1, 1970 (the UNIX timestamp) 
+ * to the time represented by the number of seconds since January 1, 1970
+ * (the UNIX timestamp).
+ *
+ * @param t Number of seconds since January 1, 1970 (the UNIX timestamp)
  *
  * Example:
  * @code
@@ -72,7 +72,7 @@
  *     set_time(1256729737); // Set time to Wed, 28 Oct 2009 11:35:37
  * }
  * @endcode
- */ 
+ */
 void set_time(time_t t);
 
 #ifdef __cplusplus