split code into more files

This commit is contained in:
2022-02-10 16:41:27 +01:00
parent b5f588bdf6
commit 34ee74c185
7 changed files with 268 additions and 0 deletions

12
taenzer.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef _TAENZER_H_
#define _TAENZER_H
typedef struct {
uint8_t homed;
uint32_t pos;
} taenzer_state_t;
void do_taenzer(void);
void timer4_init(void);
#endif