mini-led-cube/firmware/main.h

33 lines
516 B
C
Raw Normal View History

2011-12-09 23:15:06 +01:00
/* CTHN.de MiniLEDCube
*
* Kai Lauterbach (klaute at web dot de)
*
* Based on http://mosfetkiller.de/?s=miniledcube
*
* License: General Public License (GPL v3)
*
*/
#ifndef __main_h__
#define __main_h__
// Includes
#include "globals.h"
#include <avr/interrupt.h>
#include <avr/io.h>
2011-11-05 16:52:02 +01:00
// Cube-Data
2011-12-10 00:49:39 +01:00
uint32_t cube = 0xffffffff;
2011-11-05 16:52:02 +01:00
// Bit Offset in Cube-Data
2011-12-10 00:49:39 +01:00
uint8_t cube_level; // = 0; // Ebene
// Prototypen
void init(void);
extern void init_usb(void);
extern void usbPoll(void);
#endif // __main_h__