mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-01 04:50:24 +08:00
49d18ec0a9
1. Fixed regulator. 2. GPIO regulator. Signed-off-by: GuEe-GUI <2991707448@qq.com>
22 lines
430 B
Python
Executable File
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')
|