16 lines
209 B
C
16 lines
209 B
C
|
|
#ifndef TOS_H_
|
|
#define TOS_H_
|
|
|
|
#include <stdint.h>
|
|
#include <avr/pgmspace.h>
|
|
#include <avr/io.h>
|
|
|
|
|
|
#define TOS_CONFIG (0x11)
|
|
#define TOS_CANFRAME (0x21)
|
|
#define TOS_PRINT (0xef)
|
|
|
|
|
|
#endif // TOS_H_
|