diff options
author | David Mellis <d.mellis@arduino.cc> | 2011-09-02 19:58:39 -0400 |
---|---|---|
committer | David Mellis <d.mellis@arduino.cc> | 2011-09-02 19:58:39 -0400 |
commit | 560a510f6434efdfa0ebcfa9cd01093714e37f43 (patch) | |
tree | e2df099c669519dddac9fea6e54f7779252c1f0d /cores/arduino/main.cpp | |
parent | 67d414d4581804fabc40960f2184b54a0f830ac0 (diff) | |
parent | 6fd0590492542c8e510397465ac6740a06b4f8be (diff) |
Merge branch 'new-extension' of github.com:arduino/Arduino into new-extension
Diffstat (limited to 'cores/arduino/main.cpp')
-rwxr-xr-x | cores/arduino/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cores/arduino/main.cpp b/cores/arduino/main.cpp index 3c46f1e..1c2ea9a 100755 --- a/cores/arduino/main.cpp +++ b/cores/arduino/main.cpp @@ -7,8 +7,10 @@ int main(void) setup(); - for (;;) + for (;;) { loop(); + serialEventRun(); + } return 0; } |