]> git.sur5r.net Git - openocd/blob - tcl/chip/atmel/at91/pmc.tcl
Remove annoying end-of-line whitespace from tcl/* files
[openocd] / tcl / chip / atmel / at91 / pmc.tcl
1
2 if [info exists AT91C_MAINOSC_FREQ] {
3     # user set this... let it be.
4 } {
5     # 18.432mhz is a common thing...
6     set AT91C_MAINOSC_FREQ 18432000
7 }
8 global AT91C_MAINOSC_FREQ
9
10 if [info exists AT91C_SLOWOSC_FREQ] {
11     # user set this... let it be.
12 } {
13     # 32khz is the norm
14     set AT91C_SLOWOSC_FREQ 32768
15 }
16 global AT91C_SLOWOSC_FREQ
17