aboutsummaryrefslogtreecommitdiff
path: root/src/user_application.cpp
diff options
context:
space:
mode:
authorlynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp>2012-07-13 22:44:27 +0900
committerlynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp>2012-07-13 22:44:27 +0900
commit339de38d0a9bc80240dc8d8024ae6b153ac8858d (patch)
treec3114f1f6a2a57a9182048c6564fb8e62e6053d4 /src/user_application.cpp
parent01c8ca3cbfef3a9b590724b0e48477e4e334df1a (diff)
fixed project for LPCXpresso IDE on Mac OSX
Diffstat (limited to 'src/user_application.cpp')
-rwxr-xr-xsrc/user_application.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/user_application.cpp b/src/user_application.cpp
index 46352cc..8685658 100755
--- a/src/user_application.cpp
+++ b/src/user_application.cpp
@@ -11,7 +11,8 @@ void loop()
while(1)
{
- Serial.println(millis()/1000);
+ Serial.println(millis()/1000,DEC);
+ delay(1000);
}
}