aboutsummaryrefslogtreecommitdiffstats
path: root/src/lpc176x/Kconfig
blob: d9f15dd1ee01cbf1f8aa7b51235626f4efeb5492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Kconfig settings for LPC176x processors

if MACH_LPC176X

config LPC_SELECT
    bool
    default y

config BOARD_DIRECTORY
    string
    default "lpc176x"

choice
    prompt "Processor model"
    config MACH_LPC1768
        bool "lpc1768 (100 Mhz)"
    config MACH_LPC1769
        bool "lpc1769 (120 Mhz)"
endchoice

config CLOCK_FREQ
    int
    default 25000000 if MACH_LPC1768 # 100000000 / 4
    default 30000000 if MACH_LPC1769 # 120000000 / 4

config SERIAL
    bool
    default y
config SERIAL_BAUD
    depends on SERIAL
    int "Baud rate for serial port"
    default 250000

endif