Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Debug function removed #49

Merged
merged 1 commit into from
Jul 18, 2017
Merged
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
9 changes: 0 additions & 9 deletions cores/arduino/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,4 @@ int main(void)
if (serialEventRun) serialEventRun();
}
return 0;
}

extern "C" void dbgMsg(const char* msg)
{
Serial.print(msg);
}
extern "C" void dbgMsgn(uint32_t msg)
{
Serial.print(msg, HEX);
}