Skip to main content

AR4_teensy41_sketch_v6.4

C:\Users\gv\Desktop\AR4_teensy41_sketch_v6.4\AR4_teensy41_sketch_v6.4.ino:76:10: fatal error: limits: No such file or directory
#include
^~~~
compilation terminated.
exit status 1

Compilation error: limits: No such file or directory

what iam doing wrong?

regards

Chris Annin

can you verify line 76 reads: #include #include <limits>

It’s compiling on my end, I assume the compiler is seeing a valid #include <limits>, but your error indicates it’s being parsed as #include limits, which usually means the angle brackets aren’t actually being read correctly. This can happen if the line contains non-ASCII characters, hidden line breaks, or got split by the editor. Try deleting that include line and retyping it manually, or replace it with #include <limits.h> which is more robust in the Arduino/Teensy environment. I should have caught that and changed it to <limits.h>

Guenter

ok, i made it now.

but why is calibrating not correct?

Axle 5 is doing to 45 degrees now?

maybe i am missed something in 6.4

Please explane

guenter