Hi @vatsugo. In the Arduino Programming Language/C++, the backslash character has a special significance. It signifies the start of an "escape sequence":
This means that the Windows style use of backslash as a path separator is problematic as the compiler sees things like the "\U" in the path as an escape sequence rather than simply the character \ followed by the character U.
One way to deal with this is to escape the backslash itself:
INCBIN(test, "C:\\USER\\Downloads\\test.bin");
The \\ escape sequence is equivalent to the \ character.
However, this can sometimes get confusing because in cases where a string is interpreted multiple times, you must add an additional level of escaping for each processing layer, leading to unpleasant things like this (or worse):
For this reason, it is best to instead use the POSIX compliant slash path separator / whenever possible. Although there might be some rare edge cases where the Windows style backslash is required in paths, the slash is almost always supported.
So please change that line to this and then try again: