]> Zhao Yanbai Git Server - acecode.git/commitdiff
...
authorAceVest <zhaoyanbai@126.com>
Mon, 18 Jun 2018 08:43:30 +0000 (16:43 +0800)
committerAceVest <zhaoyanbai@126.com>
Mon, 18 Jun 2018 08:43:30 +0000 (16:43 +0800)
arduino/hardware/ace/avr/cores/avr/Arduino.h
arduino/hardware/ace/avr/cores/avr/HardwareSerial.cpp
arduino/hardware/ace/avr/cores/avr/HardwareSerial0.cpp
arduino/hardware/ace/avr/cores/avr/Print.cpp
arduino/hardware/ace/avr/cores/avr/Stream.cpp
arduino/hardware/ace/avr/cores/avr/app.cpp

index fa3dd6228129056daf7c87cf71599920074f1154..b0774e2cb69084948704f093eb8ea508853da6af 100644 (file)
@@ -8,4 +8,3 @@
  */
 
 #pragma once
-#include <AceAvr.h>
index 5cd89e5e66489828ba41326b4132f17e458f0d6d..b63259a00395ebcf66a57d463a6ab9d2b88b3f4b 100644 (file)
@@ -26,7 +26,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <inttypes.h>
-#include "Arduino.h"
+#include "AceAvr.h"
 
 #include "HardwareSerial.h"
 #include "HardwareSerial_private.h"
index 1146eebab629f392bbeff5d5e78b2d9f16dcf289..03b163d35b9f3c50f67d8c4762d4b361a2befc34 100644 (file)
@@ -22,7 +22,7 @@
   Modified 3 December 2013 by Matthijs Kooijman
 */
 
-#include "Arduino.h"
+#include "AceAvr.h"
 #include "HardwareSerial.h"
 #include "HardwareSerial_private.h"
 
index 1e4c99a655242bcdd1485a88135ddeca31fe04b0..b730016ba7759e66ed8773d01aab48b6891573d8 100644 (file)
@@ -24,7 +24,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <math.h>
-#include "Arduino.h"
+#include "AceAvr.h"
 
 #include "Print.h"
 
index d2846316d348d3d54a1c0d330355e9d26781ad94..52bd4215433023d88fe5c288eddf4228543df5ab 100644 (file)
@@ -22,7 +22,7 @@
  findMulti/findUntil routines written by Jim Leonard/Xuth
  */
 
-#include "Arduino.h"
+#include "AceAvr.h"
 #include "Stream.h"
 
 #define PARSE_TIMEOUT 1000  // default number of milli-seconds to wait
index 873c2b3c0506f42ac238124260d933c3d1587ba4..ab21c2995328b3e622ebd8b93d915d45fe4b9afb 100644 (file)
@@ -45,7 +45,7 @@ void user_task2() {
     while(1) {
         Serial.print("user task 2, cnt: ");
         Serial.println(cnt++);
-        task_delay(100);
+        task_delay(90);
     }
 }
 #endif