aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Embroidery/libembroidery/utility/ino-logging.cpp
blob: 03d4f79fb2f3f2caf589a17cb6760ea21cbbce6a (plain)
1
2
3
4
5
6
7
8
9
10
#include "ino-logging.h"

#include "Arduino.h"

void inoLog_serial(const char* msg)
{
    Serial.println(msg);
}

/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */