yes start in Marlin_main.cpp
Arduino expects, the following two constructs which is not standard in C and variants..
but setup and loop is where you should start
Arduino expects, the following two constructs which is not standard in C and variants..
void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
but setup and loop is where you should start