Initial check-in of openocd-0.7.0 as it can be downloaded from http://sourceforge.net/projects/openocd/files/openocd/0.7.0/ Any modifications will follow. Change-Id: I6949beaefd589e046395ea0cb80f4e1ab1654d55
18 lines
341 B
Tcl
18 lines
341 B
Tcl
|
|
if [info exists AT91C_MAINOSC_FREQ] {
|
|
# user set this... let it be.
|
|
} {
|
|
# 18.432mhz is a common thing...
|
|
set AT91C_MAINOSC_FREQ 18432000
|
|
}
|
|
global AT91C_MAINOSC_FREQ
|
|
|
|
if [info exists AT91C_SLOWOSC_FREQ] {
|
|
# user set this... let it be.
|
|
} {
|
|
# 32khz is the norm
|
|
set AT91C_SLOWOSC_FREQ 32768
|
|
}
|
|
global AT91C_SLOWOSC_FREQ
|
|
|