Skip to content

Commit ca836f0

Browse files
committed
Updating changelog. Removing extraneous code from OpenLog_Minimal.
1 parent 9376d21 commit ca836f0

File tree

2 files changed

+11
-36
lines changed

2 files changed

+11
-36
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ All notable changes to this project will be documented in this file. We'll also
33

44
## [4.0] - November 23 2015
55

6-
26,734 bytes compiled
6+
27,046 bytes compiled
77

8-
Welcome to version 4! Now compiles under Arduino v1.6.x! Worked on issue #168. Fixed issue #178. Thanks @jremington! Now works with Bill's latest [SD lib](https://github.com/greiman/SdFat-beta).
8+
Welcome to version 4! Now compiles under Arduino v1.6.x! Thanks @owenduffy for getting OpenLog ported to the new SdFatLib.
9+
10+
Worked on issue #168. Fixed issue #178. Thanks @jremington! Now works with Bill's latest [SD lib](https://github.com/greiman/SdFat-beta).
911

1012
[Added] Escape character sequences are now removed from logs. If you hit ctrl+z three times you'll drop to the command shell and the three escape characters will not be recorded to the log.
13+
1114
[Removed] The pwd command has been removed from the command shell. This *shouldn't* effect anyone but you should know.
15+
1216
[Removed] The sync command has been removed from the command shell. This *shouldn't* effect anyone but you should know.
1317

1418
Fixed a bad bug found by @ystark. Thank you! New file name array is now correctly defined as static.

firmware/OpenLog_Minimal/OpenLog_Minimal.ino

+5-34
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,9 @@
3333
// port 0, 1024 byte RX buffer, 0 byte TX buffer
3434
SerialPort<0, 1024, 0> NewSerial;
3535

36-
3736
//Debug turns on (1) or off (0) a bunch of verbose debug statements. Normally use (0)
38-
#define DEBUG 1
39-
//#define DEBUG 0
37+
//#define DEBUG 1
38+
#define DEBUG 0
4039

4140
#define SD_CHIP_SELECT 10 //On OpenLog this is pin 10
4241

@@ -62,10 +61,10 @@ long setting_uart_speed = 115200;
6261

6362
//Handle errors by printing the error type and blinking LEDs in certain way
6463
//The function will never exit - it loops forever inside blinkError
65-
void systemError(byte error_type)
64+
void systemError(byte errorType)
6665
{
6766
NewSerial.print(F("Error "));
68-
switch (error_type)
67+
switch (errorType)
6968
{
7069
case ERROR_CARD_INIT:
7170
NewSerial.print(F("card.init"));
@@ -123,10 +122,7 @@ void setup(void)
123122

124123
void loop(void)
125124
{
126-
newLog();
127-
NewSerial.println("Holding");
128-
while(1);
129-
//appendFile(newLog()); //Append the file name that newlog() returns
125+
appendFile(newLog()); //Append the file name that newlog() returns
130126
}
131127

132128
//Log to a new file everytime the system boots
@@ -171,21 +167,13 @@ char* newLog(void)
171167

172168
//Search for next available log spot
173169
static char newFileName[13];
174-
sd.chdir();
175-
176170
while(1)
177171
{
178172
sprintf_P(newFileName, PSTR("LOG%05d.TXT"), newFileNumber); //Splice the new file number into this file name
179173

180-
NewSerial.print(F("Checking "));
181-
NewSerial.println(newFileName);
182-
183174
//If we are able to create this file, then it didn't exist, we're good, break
184175
if (newFile.open(newFileName, O_CREAT | O_EXCL | O_WRITE)) break;
185176

186-
NewSerial.print(F("Found "));
187-
NewSerial.println(newFileName);
188-
189177
//If file exists, see if empty. If so, use it.
190178
if (newFile.open(newFileName, O_READ))
191179
{
@@ -218,9 +206,6 @@ char* newLog(void)
218206
EEPROM.write(LOCATION_FILE_NUMBER_MSB, msb); // MSB
219207

220208
#if DEBUG
221-
NewSerial.print(F("newFileNumber: "));
222-
NewSerial.println(newFileNumber);
223-
224209
NewSerial.print(F("Created new file: "));
225210
NewSerial.println(newFileName);
226211
#endif
@@ -321,17 +306,3 @@ void toggleLED(byte pinNumber)
321306
if (digitalRead(pinNumber)) digitalWrite(pinNumber, LOW);
322307
else digitalWrite(pinNumber, HIGH);
323308
}
324-
325-
//End core system functions
326-
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
327-
328-
//A rudimentary way to convert a string to a long 32 bit integer
329-
//Used by the read command, in command shell and baud from the system menu
330-
uint32_t strtolong(const char* str)
331-
{
332-
uint32_t l = 0;
333-
while (*str >= '0' && *str <= '9')
334-
l = l * 10 + (*str++ - '0');
335-
336-
return l;
337-
}

0 commit comments

Comments
 (0)