Skip to content

Commit cc6ad9b

Browse files
committed
test commit for checkpatch
commit is described in this section where you describe all the code changes you have made but without exceeding line lengths, as you can see this will not be caught as a violation as well Signed-off-by: Dhruva Gole <goledhruva@gmail.com>
1 parent 882bca3 commit cc6ad9b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

cores/arduino/main.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@
66

77
#include "Arduino.h"
88

9+
void func() {
10+
printf("DO NOT MERGE!\n");
11+
return FALSE;
12+
}
13+
914
int main(void) {
15+
func();
1016
setup();
1117

1218
for (;;) {
1319
loop();
1420
}
1521

1622
return 0;
17-
}
23+
}

0 commit comments

Comments
 (0)