~aleteoryx/muditaos

ref: 32c6769cb684b99d6154c41fa72a421ce1e23c0c muditaos/module-bsp/board/rt1051/bellpx/CMakeLists.txt -rw-r--r-- 962 bytes
32c6769c — Lefucjusz [BH-1657][BH-1833][BH-1854] Add WFI and SDRAM self-refresh mode 1 year, 11 months ago
                                                                                
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
36
37
38
39
40
41
42
43
target_include_directories(
        module-bsp
    PUBLIC
        $<BUILD_INTERFACE:
            ${CMAKE_CURRENT_SOURCE_DIR}
        >
)

target_sources(
        module-bsp

    PRIVATE
        hal/battery_charger/BatteryCharger.cpp
        hal/key_input/KeyInput.cpp
        hal/temperature_source/TemperatureSource.cpp

        bsp/audio/AW8898driver.cpp
        bsp/audio/CodecAW8898.cpp

        bsp/eink/eink_gpio.cpp
        bsp/lpm/PowerProfile.cpp
        bsp/lpm/RT1051LPM.cpp
        bsp/lpm/WfiController.cpp
        bsp/lpm/EnterSleepMode.c
        bsp/rotary_encoder/rotary_encoder.cpp
        bsp/rtc/rtc_configuration.cpp
        bsp/switches/switches.cpp

        audio.cpp
        clock_config.cpp
        debug_console.cpp
        irq_gpio.cpp
        pin_mux.c
        board.cpp
        brownout.cpp

    PUBLIC
        eink-config.h
        board/pin_mux.h
        board/clock_config.h
        board/irq_gpio.hpp
        board/brownout.hpp
)