Skip to content

Commit

Permalink
Header
Browse files Browse the repository at this point in the history
  • Loading branch information
berk76 committed Sep 28, 2017
1 parent 6c85ee3 commit f8ddc5c
Show file tree
Hide file tree
Showing 16 changed files with 190 additions and 44 deletions.
14 changes: 12 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# PlotterController (C) Jaroslav Beran, 2014
#
# Makefile
#
# This file is part of PlotterController project.
# https://github.com/berk76/plottercontroller
#
# PlotterController is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version. <http://www.gnu.org/licenses/>
#
# Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 24.1.2014


CFLAGS = -O2 -Wall -c -o $@
objects = src/main.o src/graph.o src/printer.o src/par_port.o src/gpio_port.o src/gpio_io.o src/text.o src/hpgl.o
Expand Down
14 changes: 11 additions & 3 deletions src/gpio_port.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
/*
* gpio_port.c
* 12.10.2015
* Jaroslav Beran (jaroslav.beran@gmail.com)
* gpio_port.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 12.10.2015
*/


Expand Down
15 changes: 12 additions & 3 deletions src/gpio_port.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* gpio_port.h
* 12.10.2015
* Jaroslav Beran (jaroslav.beran@gmail.com)
* gpio_port.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 12.10.2015
*/


#ifndef _GPIO_PORT_H
#define _GPIO_PORT_H

Expand Down
15 changes: 12 additions & 3 deletions src/graph.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* graph.c
* 10.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* graph.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 10.1.2014
*/


#include <stdio.h>
#include <stdlib.h>
#include <math.h>
Expand Down
15 changes: 12 additions & 3 deletions src/graph.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* graph.h
* 10.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* graph.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 10.1.2014
*/


#ifndef _GRAPH_H
#define _GRAPH_H

Expand Down
15 changes: 12 additions & 3 deletions src/hpgl.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* hpgl.c
* 8.2.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* hpgl.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 8.2.2014
*/


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
15 changes: 12 additions & 3 deletions src/hpgl.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* hpgl.h
* 8.2.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* hpgl.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 8.2.2014
*/


#ifndef _HPGL_H
#define _HPGL_H

Expand Down
14 changes: 11 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
/*
* main.c
* 10.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* main.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 10.1.2014
*/


Expand Down
15 changes: 12 additions & 3 deletions src/main.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* main.h
* 10.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* main.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 10.1.2014
*/


#ifndef _MAIN_H
#define _MAIN_H

Expand Down
15 changes: 12 additions & 3 deletions src/par_port.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* par_port.h
* 13.10.2015
* Jaroslav Beran (jaroslav.beran@gmail.com)
* par_port.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 13.10.2015
*/


/*
* PLOTTER
* PC-printer port XY4131 XY4140 XY4150
Expand Down
15 changes: 12 additions & 3 deletions src/par_port.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* par_port.h
* 13.10.2015
* Jaroslav Beran (jaroslav.beran@gmail.com)
* par_port.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 13.10.2015
*/


#ifndef _PAR_PORT_H
#define _PAR_PORT_H

Expand Down
14 changes: 11 additions & 3 deletions src/printer.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
/*
* printer.c
* 10.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* printer.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 10.1.2014
*/


Expand Down
15 changes: 12 additions & 3 deletions src/printer.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* printer.h
* 10.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* printer.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 10.1.2014
*/


#ifndef _PRINTER_H
#define _PRINTER_H

Expand Down
15 changes: 12 additions & 3 deletions src/text.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* text.c
* 26.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* text.c
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 26.1.2014
*/


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
15 changes: 12 additions & 3 deletions src/text.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/*
* text.h
* 26.1.2014
* Jaroslav Beran (jaroslav.beran@gmail.com)
* text.h
*
* This file is part of PlotterController project.
* https://github.com/berk76/plottercontroller
*
* PlotterController is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version. <http://www.gnu.org/licenses/>
*
* Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 26.1.2014
*/


#ifndef _TEXT_H
#define _TEXT_H

Expand Down
13 changes: 13 additions & 0 deletions var/font1.fnt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# font1.fnt
#
# This file is part of PlotterController project.
# https://github.com/berk76/plottercontroller
#
# PlotterController is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version. <http://www.gnu.org/licenses/>
#
# Written by Jaroslav Beran <jaroslav.beran@gmail.com>, on 3.2.2014


# This file contains font definition
#
# Line structure:
Expand Down

0 comments on commit f8ddc5c

Please sign in to comment.