First commit of partly-working reflow oven controller.

This commit is contained in:
2015-08-13 14:43:19 +00:00
commit aaaec8ff40
43 changed files with 3010 additions and 0 deletions

0
test/avr/io.h Normal file
View File

13
test/avr/pgmspace.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef _PGMSPACE_H_
#define _PGMSPACE_H_
#include <string.h>
#define PROGMEM
#define PGM_P const char *
#define pgm_read_byte(x) (*(char *)(x))
#define pgm_read_ptr(x) (*(char **)(x))
#define strlen_P strlen
#define memcpy_P memcpy
#endif