Skip to content
Snippets Groups Projects
Select Git revision
  • ef4e2ab0dfbc0887ee911d7a6604b0ae0302d06f
  • main default protected
  • phhw
  • captouch-threshold
  • t
  • dos
  • test2
  • test
  • slewtest
  • simtest
  • view-think
  • vm-pending
  • media-buf
  • scope
  • passthrough
  • wave
  • vsync
  • dos-main-patch-50543
  • json-error
  • rahix/big-flow3r
  • pippin/media_framework
  • v1.3.0
  • v1.2.0
  • v1.2.0+rc1
  • v1.1.1
  • v1.1.0
  • v1.1.0+rc1
  • v1.0.0
  • v1.0.0+rc6
  • v1.0.0+rc5
  • v1.0.0+rc4
  • v1.0.0+rc3
  • v1.0.0+rc2
  • v1.0.0+rc1
34 results

leds.py

Blame
  • Forked from flow3r / flow3r firmware
    Source project has a limited visibility.
    meson.build 535 B
    includes = include_directories(
      './Include/',
      '../Include/',
    )
    
    sources = files(
      './Source/board.c',
      '../Source/led.c',
      '../Source/mx25.c',
      '../Source/pb.c',
    )
    
    lib = static_library(
      'board-card10',
      sources,
      include_directories: includes,
      dependencies: periphdriver,
    )
    
    libstdio = static_library(
      'board-stdio',
      '../Source/stdio.c',
      include_directories: includes,
      dependencies: periphdriver,
    )
    
    board_card10 = declare_dependency(
      include_directories: includes,
      link_with: lib,
      link_whole: libstdio,
    )