This repository was archived by the owner on Dec 6, 2018. It is now read-only.
File tree 5 files changed +11
-11
lines changed
5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 7
7
in with pkgs ; {
8
8
coreEnv = stdenv . mkDerivation {
9
9
name = "thecore" ;
10
- buildInputs = [ cmake gcc6 cppcheck cpputest gcc-arm-embedded-5 doxygen clang openocd ] ;
10
+ buildInputs = [ cmake gcc6 cppcheck cpputest gcc-arm-embedded-5 doxygen llvmPackages . clang-unwrapped openocd ] ;
11
11
shellHook = ''
12
12
export GCC_ARM_EMBEDDED_PATH=${ gcc-arm-embedded-5 }
13
13
'' ;
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ cmake_minimum_required(VERSION 3.2)
3
3
# The Core framework directory.
4
4
set (CORE_DIR ../../)
5
5
6
+ # Obvious.
7
+ project (cs43l22_audio)
8
+
6
9
# Required.
7
10
include (${CORE_DIR} /build_api.cmake)
8
11
9
- # Objvious.
10
- project (cs43l22_audio)
11
-
12
12
# Our demo sources.
13
13
add_executable (audio main.cpp target .cpp)
14
14
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ cmake_minimum_required(VERSION 3.2)
3
3
# The Core framework directory.
4
4
set (CORE_DIR ../../)
5
5
6
- # Required.
7
- include (${CORE_DIR} /build_api.cmake)
8
-
9
6
# Objvious.
10
7
project (host_hello)
11
8
9
+ # Required.
10
+ include (${CORE_DIR} /build_api.cmake)
11
+
12
12
# Required flags for this demo
13
13
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99" )
14
14
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14" )
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ cmake_minimum_required(VERSION 3.2)
3
3
# The Core framework directory.
4
4
set (CORE_DIR ../../)
5
5
6
+ # Obvious.
7
+ project (exti_to_uart)
8
+
6
9
# Required.
7
10
include (${CORE_DIR} /build_api.cmake)
8
11
9
- # Objvious.
10
- project (exti_to_uart)
11
-
12
12
# Required flags for this demo
13
13
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99" )
14
14
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14" )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if(DEFINED CONFIG_OS)
4
4
message (STATUS "OS selected: ${CONFIG_OS} " )
5
5
if (CONFIG_OS STREQUAL "freertos" )
6
6
add_subdirectory (freertos)
7
- else (CONFIG_OS STREQUAL "host" )
7
+ elseif (CONFIG_OS STREQUAL "host" )
8
8
if (UNIX )
9
9
add_subdirectory (posix)
10
10
else ()
You can’t perform that action at this time.
0 commit comments