Add simple HPGL parser, PWM output

This commit is contained in:
fruchti 2020-11-28 23:01:21 +01:00
parent 7234eb8360
commit 57f486a4d2
11 changed files with 439 additions and 8 deletions

12
stm32f103c8t6/src/hpgl.h Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <stdbool.h>
typedef struct
{
bool pen_down;
unsigned int x;
unsigned int y;
} HPGL_Movement_t;
void HPGL_Poll(void);