comparison Lib/CMake/modules.cmake @ 389:fc2c2a1e9615

Adding basic remote capabilities + UART Rx DMA buffers - Rx buffers weren't fast enough, had to use DMA :D - Basic LCD remote capabilities are working, single node - Multi-node broadcast seems to have a bug still - DMA ring buffer allowed for significant processing simplification * There is an overrun risk, but the buffer is large and generally there isn't too much data being sent (just very quickly) - Split out LCD layer stack capability into itself and an "exact" version used for updating remote nodes
author Jacob Alexander <haata@kiibohd.com>
date Thu, 15 Oct 2015 00:16:36 -0700
parents 834d69d22d47
children
comparison
equal deleted inserted replaced
388:3ddab7faf67d 389:fc2c2a1e9615
275 file ( GLOB filenames "${pathglob}/*.h" ) 275 file ( GLOB filenames "${pathglob}/*.h" )
276 set ( CTAG_PATHS ${CTAG_PATHS} ${filenames} ) 276 set ( CTAG_PATHS ${CTAG_PATHS} ${filenames} )
277 endforeach () 277 endforeach ()
278 278
279 # Generate the ctags 279 # Generate the ctags
280 execute_process ( COMMAND ctags ${CTAG_PATHS} 280 execute_process ( COMMAND ctags --fields=+l ${CTAG_PATHS}
281 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} 281 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
282 ) 282 )
283 endif () 283 endif ()
284 284