Skip to content
Snippets Groups Projects
Select Git revision
  • a76880e9c331804e359f80e10cffac64faaba068
  • master default protected
  • fix-warnings
  • tvbgone-fixes
  • genofire/ble-follow-py
  • schneider/ble-stability-new-phy-adv
  • schneider/ble-stability
  • msgctl/gfx_rle
  • schneider/ble-stability-new-phy
  • add_menu_vibration
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • schneider/fundamental-test
  • schneider/ble-buffers
  • schneider/maxim-sdk-update
  • ch3/splashscreen
  • koalo/bhi160-works-but-dirty
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
36 results

DEV_Config.h

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    micropython.cmake 1.06 KiB
    # If you want to add dependencies on other ESP-IDF modules, add them to
    # IDF_COMPONENTS in components/micropython/CMakeLists.txt, that is the component
    # that the usermodules are actually part of.
    
    add_library(usermod_badge23 INTERFACE)
    
    target_sources(usermod_badge23 INTERFACE
        ${CMAKE_CURRENT_LIST_DIR}/mp_audio.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_badgelink.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_badgenet.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_captouch.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_imu.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_leds.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_bl00mbox.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_buttons.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_display.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_kernel.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_uctx.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_media.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_mode.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_colors.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_sys_scope.c
    )
    
    target_include_directories(usermod_badge23 INTERFACE
        ${CMAKE_CURRENT_LIST_DIR}
    )
    
    target_link_libraries(usermod INTERFACE usermod_badge23)