mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-02 02:40:23 +08:00
10cac76d3b
MFD (Multifunction device) with System Controller Register Read/Write. Signed-off-by: GuEe-GUI <2991707448@qq.com>
18 lines
312 B
Python
Executable File
18 lines
312 B
Python
Executable File
from building import *
|
|
|
|
group = []
|
|
|
|
if not GetDepend(['RT_USING_MFD']):
|
|
Return('group')
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../include']
|
|
src = []
|
|
|
|
if GetDepend(['RT_MFD_SYSCON']):
|
|
src += ['mfd-syscon.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|