Linear Algebra  arduino
Accessible implementations of linear algebra algorithms
ArduinoMacroFix.hpp
Go to the documentation of this file.
1 #pragma once
2 
12 #ifdef ARDUINO
13 #include <Arduino.h>
14 
15 #ifdef abs
16 #undef abs
17 #endif
18 #ifdef min
19 #undef min
20 #endif
21 #ifdef max
22 #undef max
23 #endif
24 #ifdef round
25 #undef round
26 #endif
27 
28 #endif