Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion DCF77.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ bool DCF77::processBuffer(void) {
// Calculate parities for checking buffer
calculateBufferParities();
tmElements_t time;
bool proccessedSucces;

struct DCF77Buffer *rx_buffer;
rx_buffer = (struct DCF77Buffer *)(unsigned long long)&processingBuffer;
Expand Down
4 changes: 2 additions & 2 deletions utility/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ namespace Utils {
#define DEBUG_BLINK_PIN 13 // Connected to debug led
//#define VERBOSE_DEBUG 1 // Verbose

void LogLn(char*s)
void LogLn(const char*s)
{
#ifdef VERBOSE_DEBUG
Serial.println(s);
#endif
}

void Log(char*s)
void Log(const char*s)
{
#ifdef VERBOSE_DEBUG
Serial.print(s);
Expand Down
4 changes: 2 additions & 2 deletions utility/Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#define intRestore(sreg) SREG = sreg

namespace Utils {
void Log(char*s);
void LogLn(char*s);
void Log(const char*s);
void LogLn(const char*s);
void Log(int i,char format);
void LogLn(int i,char format);
void Log(int i);
Expand Down