Import code from old repository from 2018
Old repository: https://github.com/binaryDiv/z80_computer
This commit is contained in:
parent
536e557eea
commit
8c7b62dc2d
19 changed files with 3076 additions and 0 deletions
12
firmware_src/config.h
Normal file
12
firmware_src/config.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef CONFIG_H_
|
||||
#define CONFIG_H_
|
||||
|
||||
// Set CPU rate
|
||||
#ifndef F_CPU
|
||||
#define F_CPU 16000000UL
|
||||
#endif
|
||||
|
||||
// Set UART Baud rate
|
||||
#define BAUD 9600UL
|
||||
|
||||
#endif /* CONFIG_H_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue