8000 Disable broken libs · vijfhoek/esp32-snippets@fffde09 · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit fffde09

Browse files
committed
Disable broken libs
1 parent e286501 commit fffde09

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

cpp_utils/MAX7219.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
/**
2828
* Modified by Neil Kolban (2017) for ESP32 support.
2929
*/
30+
#if 0
3031

3132
#include "MAX7219.h"
3233
#include <math.h>
@@ -278,3 +279,4 @@ void MAX7219::setNumber(uint32_t number, int addr) {
278279
}
279280
}
280281
}
282+
#endif

cpp_utils/MAX7219.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2424
* OTHER DEALINGS IN THE SOFTWARE.
2525
*/
26-
26+
#if 0
2727
#ifndef MAX7219_h
2828
#define MAX7219_h
2929

@@ -191,3 +191,4 @@ class MAX7219 {
191191

192192
#endif // MAX7219.h
193193

194+
#endif

cpp_utils/MFRC522.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Neil Kolban, July 2017.
1616
*
1717
*/
18-
18+
#if 0
1919
#include "MFRC522.h"
2020
#include "MFRC522Debug.h"
2121
#include <FreeRTOS.h>
@@ -1643,3 +1643,4 @@ bool MFRC522::PICC_ReadCardSerial() {
16431643
MFRC522::StatusCode result = PICC_Select(&uid);
16441644
return (result == STATUS_OK);
16451645
} // End
1646+
#endif

cpp_utils/MFRC522.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
* Pages 42-43 Authentication configuration
7373
* Pages 44-47 Authentication key
7474
*/
75+
#if 0
7576
#ifndef MFRC522_h
7677
#define MFRC522_h
7778

@@ -416,3 +417,4 @@ class MFRC522 {
416417
};
417418

418419
#endif
420+
#endif

cpp_utils/MRFC522Debug.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
#if 0
22
#include "MFRC522Debug.h"
33

44
/**
@@ -44,3 +44,4 @@ const char *MFRC522Debug::GetStatusCodeName(MFRC522::StatusCode code ///< One of
4444
default: return "Unknown error";
4545
}
4646
} // End GetStatusCodeName()
47+
#endif

0 commit comments

Comments
 (0)
0