peripherals: Commented out until fixed.

Peripherals were following old lpc chip pinout (lpc15xx). We have different (lpc11u6x). I decided to comment them out until we figure out correct pinout. (project should always build in master)
This commit is contained in:
RedHawk
2023-04-06 11:12:47 +03:00
parent 67579db883
commit c662936689
10 changed files with 86 additions and 1 deletions

View File

@@ -9,6 +9,10 @@
#include <mutex>
#include "LpcUart.h"
// Remove this when code will be reworked.
#ifndef LPCUART_NOT_FIXED
// Remove this when code will be reworked.
static LpcUart *u0;
static LpcUart *u1;
@@ -313,3 +317,7 @@ bool LpcUart::txempty()
return (RingBuffer_GetCount(&txring) == 0);
}
// Remove this when code will be reworked.
#endif /* LPCUART_NOT_FIXED */
// Remove this when code will be reworked.