aboutsummaryrefslogtreecommitdiff
path: root/Source/Serial.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-02 03:29:16 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2021-01-03 01:15:57 +0100
commit2a3366c4722ce9caca155a156145db6a7fc34a17 (patch)
tree954a6f9a4e351586e37ea1b76a1fd5432189f8ea /Source/Serial.c
parent394bf97e1233954a6fc57e7ed1635910047cfc7f (diff)
downloadairport-2a3366c4722ce9caca155a156145db6a7fc34a17.tar.gz
Deprecate dprintf over printf
Diffstat (limited to 'Source/Serial.c')
-rw-r--r--Source/Serial.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Serial.c b/Source/Serial.c
index 2002d72..087f631 100644
--- a/Source/Serial.c
+++ b/Source/Serial.c
@@ -45,7 +45,6 @@ bool SerialRead(uint8_t* ptrArray, size_t nBytes)
{
if (nBytes == 0)
{
- dprintf("SerialRead: invalid size %d\n", nBytes);
return false;
}
@@ -67,7 +66,6 @@ bool SerialWrite(void* ptrArray, size_t nBytes)
if (nBytes == 0)
{
- dprintf("SerialWrite: invalid size %d\n", nBytes);
return false;
}