feat(boards): Add Mikoto board
* Supports selecting from several possible charge currents Co-authored-by: Pete Johanson <peter@peterjohanson.com>
This commit is contained in:
parent
944f931704
commit
f2e0642291
11 changed files with 363 additions and 0 deletions
29
app/boards/arm/mikoto/Kconfig
Normal file
29
app/boards/arm/mikoto/Kconfig
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
config BOARD_ENABLE_DCDC
|
||||
bool "Enable DCDC mode"
|
||||
select SOC_DCDC_NRF52X
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue