Fix test compilation errors and max

This commit is contained in:
Jaakko Haakana 2025-07-26 15:53:24 +03:00
parent 44d74b285e
commit 9e44de269c
8 changed files with 13 additions and 3 deletions

View file

@ -13,6 +13,6 @@ int digitalRead(uint8_t pin);
#undef millis
unsigned long millis();
#define max(a, b) std::max(a, b)
int max(int a, int b);
#endif