4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-01 04:50:24 +08:00
GuEe-GUI 49d18ec0a9 [DM/REGULATOR] Add populate drivers
1. Fixed regulator.
2. GPIO regulator.

Signed-off-by: GuEe-GUI <2991707448@qq.com>
2024-11-27 18:02:23 +08:00

22 lines
430 B
Python
Executable File

from building import *
group = []
if not GetDepend(['RT_USING_REGULATOR']):
Return('group')
cwd = GetCurrentDir()
CPPPATH = [cwd + '/../include']
src = ['regulator.c', 'regulator_dm.c']
if GetDepend(['RT_REGULATOR_FIXED']):
src += ['regulator-fixed.c']
if GetDepend(['RT_REGULATOR_GPIO']):
src += ['regulator-gpio.c']
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')