lib_PwmOutAllPin permet de créer des PwmOut sur toutes les DigitalOut du Mbed. YSI

Files at this revision

API Documentation at this revision

Comitter:
YSI
Date:
Wed May 04 12:16:13 2016 +0000
Parent:
4:22942b7e1635
Commit message:
Up Doc

Changed in this revision

lib_PwmOutAllPin.cpp Show annotated file Show diff for this revision Revisions of this file
lib_PwmOutAllPin.h Show annotated file Show diff for this revision Revisions of this file
diff -r 22942b7e1635 -r 0f5ad06f23c0 lib_PwmOutAllPin.cpp
--- a/lib_PwmOutAllPin.cpp	Wed May 04 10:54:33 2016 +0000
+++ b/lib_PwmOutAllPin.cpp	Wed May 04 12:16:13 2016 +0000
@@ -1,4 +1,4 @@
-/** Lib PwmOutAllPin
+/** Lib PwmOutAllPin using TimeOut
 *
 * Copyright (c) 2014, cstyles (http://mbed.org)
 *
@@ -32,7 +32,7 @@
 #include "lib_PwmOutAllPin.h"
 
 /** Crée un PwmOutAllPin connecté à la pin spécifiée
- *
+ *	@note init period 20ms and duty cycle 0%
  *  @param pin Pin à connecter
  */
 PwmOutAllPin::PwmOutAllPin(PinName pin) : PwmOutPin(pin)
diff -r 22942b7e1635 -r 0f5ad06f23c0 lib_PwmOutAllPin.h
--- a/lib_PwmOutAllPin.h	Wed May 04 10:54:33 2016 +0000
+++ b/lib_PwmOutAllPin.h	Wed May 04 12:16:13 2016 +0000
@@ -1,4 +1,4 @@
-/** Lib PwmOutAllPin
+/** Lib PwmOutAllPin using TimeOut
 *
 * Copyright (c) 2014, cstyles (http://mbed.org)
 *
@@ -33,12 +33,13 @@
 #define DEF_lib_PwmOutAllPin_H
 
 #include "mbed.h"
-
+/** PwmOutAllPin class
+ */
 class PwmOutAllPin : public Timeout
 {
 	public:
 	/** Crée un PwmOutAllPin connecté à la pin spécifiée
-	 *
+	 *	@note init period 20ms and duty cycle 0%
 	 *  @param pin Pin à connecter
 	 */
     PwmOutAllPin(PinName pin);