projects
/
rpikern
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
testing minimal program
[rpikern]
/
src
/
config.h
1
#ifndef CONFIG_H_
2
#define CONFIG_H_
3
4
#ifndef RPI_MODEL
5
#define RPI_MODEL 2
6
#endif
7
8
#if RPI_MODEL == 1
9
#define IO_BASE 0x20000000
10
#else
11
#define IO_BASE 0x3f000000
12
#endif
13
14
#endif /* CONFIG_H_ */