avrdude: Standalone binary

This commit is contained in:
Vojtech Kral
2018-06-27 15:02:32 +02:00
committed by bubnikv
parent 6b801f250a
commit 3c2170acf8
3 changed files with 124 additions and 53 deletions

View File

@@ -0,0 +1,9 @@
#include "avrdude.h"
static const char* SYS_CONFIG = "/etc/avrdude-slic3r.conf";
int main(int argc, char *argv[])
{
return avrdude_main(argc, argv, SYS_CONFIG);
}