Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (11 sloc)
278 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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 |