This website works better with JavaScript.
Home
Explore
Help
Sign In
GPS
/
gpstracker-firmware
mirror of
https://github.com/blemasle/gpstracker-firmware.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
8
Wiki
Activity
Browse Source
Fixed constant string being declared in RAM
tags/v1.2.0
Bertrand Lemasle
7 years ago
parent
6a6b6063a2
commit
b75f48671c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
GpsTracker/Logging.cpp
+ 1
- 1
GpsTracker/Logging.cpp
View File
@@ -11,7 +11,7 @@ namespace logging {
Serial.begin(LOG_SERIAL_SPEED);
Log.begin(LOG_LEVEL, &Serial);
Log.notice("Starting...\n");
Log.notice(
F(
"Starting...\n"
)
);
}
}
Write
Preview
Loading…
Cancel
Save