sduino icon indicating copy to clipboard operation
sduino copied to clipboard

Compilation error when including .c file from the same directory

Open dvhx opened this issue 3 years ago • 0 comments

I have 3 files in project folder:

  • project.ino
  • lib.h
  • lib.c

Content of lib.h:

#define FOO 123

Content of lib.c:

#include "lib.h"
int foo() {
  return FOO;
}

Content of project.ino:

#include "lib.c"
void setup() {
  // put your setup code here, to run once:
}
void loop() {
  // put your main code here, to run repeatedly:
}

When I try to compile it it ends with error: panic: runtime error: index out of range [2] with length 2

dvhx avatar Jul 07 '22 07:07 dvhx