Funzioni di IO varie con seriale asincrona

Dependents:   Nucleo_AsyncSerialIO

Fork of IOFuncLib by Max Scordamaglia

Revision:
9:a9b3a88c25d1
Parent:
8:40cbeb447bca
Child:
10:b6c09ee246cc
--- a/IOFuncLib.cpp	Wed Jul 15 23:21:25 2015 +0000
+++ b/IOFuncLib.cpp	Wed Jul 15 23:46:58 2015 +0000
@@ -21,7 +21,7 @@
     _pin=n;
 }
 
-void Flasher::notPin()
+void Flasher::notPin(void)
 {
     _pin = !_pin;
 }
@@ -181,3 +181,4 @@
 int genFunctions::abs(int x) {
     return ((x)>0?(x):-(x));
     }
+