Linear Algebra
arduino
Accessible implementations of linear algebra algorithms
src
src
Arduino
ArduinoConfig.cpp
Go to the documentation of this file.
1
#include <
include/linalg/Arduino/ArduinoConfig.hpp
>
2
3
#ifdef NO_FUNEXCEPT_DEFINITIONS
4
namespace
std {
5
void
__throw_bad_alloc() {
6
Serial.println(
"bad_alloc"
);
7
while
(
true
) {
8
}
9
}
10
void
__throw_length_error(
char
const
*c) {
11
Serial.println(
"length_error"
);
12
Serial.println(c);
13
while
(
true
) {
14
}
15
}
16
}
// namespace std
17
#endif
ArduinoConfig.hpp
Preprocessor logic for configuring the library to make it compatible with the Arduino environment.
Generated by
1.9.1