00001 #ifndef _CONFIG_H_
00002 #define _CONFIG_H_
00003
00004
00005 #include "compiler.h"
00006 #ifdef __GNUC__
00007 #include <avr/io.h>
00008 #elif __ICCAVR__
00009 #define ENABLE_BIT_DEFINITIONS
00010 #include <ioavr.h>
00011 #else
00012 #error Current COMPILER not supported
00013 #endif
00014
00015
00018
00019
00020
00023
00024
00026 #define FOSC 8000
00027
00031 #define NB_IDLE_POLLING_SOF 3
00032 #define MOUSE_SPEED 2
00034
00035 #define Usb_sof_action() sof_action();
00036 #define Usb_suspend_action() suspend_action();
00037
00038 #endif// _CONFIG_H_
00039