removed unnecessary message by printf (in 32bit register read function)
Fork of PCA9629A by
Revision 1:b03b599af5ee, committed 2016-09-20
- Comitter:
- okano
- Date:
- Tue Sep 20 07:54:49 2016 +0000
- Parent:
- 0:0c797805233b
- Commit message:
- removed unnecessary printf call
Changed in this revision
PCA9629A.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 0c797805233b -r b03b599af5ee PCA9629A.cpp --- a/PCA9629A.cpp Fri Sep 12 08:10:19 2014 +0000 +++ b/PCA9629A.cpp Tue Sep 20 07:54:49 2016 +0000 @@ -183,8 +183,6 @@ if ( error_code ) error( "PCA9629A reading (data phase) failed\r\n" ); - printf( "0x %02X %02X %02X %02X\r\n", data[3], data[2], data[1], data[0] ); - return ( data[ 3 ] << 24 | data[ 2 ] << 16 | data[ 1 ] << 8 | data[ 0 ] ); }