Welcome to mirror list, hosted at ThFree Co, Russian Federation.

defines.h - github.com/ClusterM/famicom-dumper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 678ac18851813e9f175d4216911c94a69e873d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _DEFINES_H_
#define _DEFINES_H_

#define F_CPU 8000000UL
#define UART_BAUD 250000UL
#define RECV_BUFFER_SIZE 2048
#define SEND_BUFFER_SIZE 2048
#define PROTOCOL_VERSION 3

#define COOLBOY_GPIO_PORT B
#define COOLBOY_RD_PIN 4
#define COOLBOY_WR_PIN 3

#endif