aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/boards/arm/mikoto/Kconfig
blob: fab2218c049c9c788acc01d3f7e1944f650f5b62 (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
35
config BOARD_ENABLE_DCDC
    bool "Enable DCDC mode"
    select SOC_DCDC_NRF52X
    default y
    depends on (BOARD_MIKOTO_520)

config BOARD_ENABLE_DCDC_HV
    bool "High voltage DCDC converter"
    select SOC_DCDC_NRF52X_HV
    default y
    depends on (BOARD_MIKOTO_520)

choice BOARD_MIKOTO_CHARGER_CURRENT
    prompt "Charge current to supply to attached batteries"
    depends on (BOARD_MIKOTO_520)

config BOARD_MIKOTO_CHARGER_CURRENT_40MA
    bool "40mA charge current, for battery capacity 40mAh or higher"

config BOARD_MIKOTO_CHARGER_CURRENT_100MA
    bool "100mA charge current, for battery capacity 100mAh or higher"

config BOARD_MIKOTO_CHARGER_CURRENT_150MA
    bool "150mA charge current, for battery capacity 150mAh or higher"

config BOARD_MIKOTO_CHARGER_CURRENT_250MA
    bool "250mA charge current, for battery capacity 250mAh or higher"

config BOARD_MIKOTO_CHARGER_CURRENT_350MA
    bool "350mA charge current, for battery capacity 350mAh or higher"

config BOARD_MIKOTO_CHARGER_CURRENT_NONE
    bool "Disable charge current"

endchoice