mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-30 11:24:12 +01:00
16 lines
320 B
C++
Executable File
16 lines
320 B
C++
Executable File
#define F_CPU 16000000UL
|
|
#define CPU_FREQ 16000000L
|
|
#define XTAL_CPU 16000000L
|
|
#define UART_BAUD_RATE 9600
|
|
|
|
#ifndef __AVR_ATmega8__
|
|
#define __AVR_ATmega8__
|
|
#endif
|
|
|
|
#define __MCU_CLOCK_FREQUENCY__ _16.0000_MHz
|
|
//#include "BConstants.h"
|
|
#include "wiring.h"
|
|
|
|
#include <avr/interrupt.h>
|
|
#include <avr/signal.h>
|