Skip to content

Commit 66c994a

Browse files
committed
initial
0 parents  commit 66c994a

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*~

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
cmake_minimum_required(VERSION 3.13.1)
4+
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
6+
project(speq)
7+
8+
target_sources(app PRIVATE src/main.c)

src/main.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Copyright (c) 2022 Space Cubics, LLC.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include <zephyr.h>
8+
#include <sys/printk.h>
9+
10+
void main(void)
11+
{
12+
printk("Hello World! %s\n", CONFIG_BOARD);
13+
}

west.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
manifest:
2+
3+
projects:
4+
- name: zephyr
5+
url: https://github.com/zephyrproject-rtos/zephyr
6+
revision: main
7+
path: zephyr
8+
west-commands: scripts/west-commands.yml
9+
10+
- name: cmsis
11+
url: https://github.com/zephyrproject-rtos/cmsis
12+
revision: b0612c97c1401feeb4160add6462c3627fe90fc7
13+
path: modules/hal/cmsis
14+
15+
self:
16+
path: libcsp-zephyr

0 commit comments

Comments
 (0)