~aleteoryx/muditaos

ref: 5098d06067b7e8400e1d45fd6f0d6cdb2f411a94 muditaos/module-bsp/board/rt1051/bellpx/CMakeLists.txt -rw-r--r-- 901 bytes
5098d060 — Dawid Wojtas [BH-1627] Enable brownout detection 3 years 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
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_pin_config.cpp
        bsp/lpm/PowerProfile.cpp
        bsp/lpm/RT1051LPM.cpp
        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
)