Skip to content

Commit

Permalink
Update the file and folder structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
At-EC committed Feb 9, 2024
1 parent 252e0cb commit 6fda0ee
Show file tree
Hide file tree
Showing 9 changed files with 52 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.20)
project(kernal_sample
LANGUAGES C)

set(At_RTOS_PATH "../../")
set(At_RTOS_PATH "../../../")

include(${At_RTOS_PATH}/CMakeLists.txt)

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$VersionFile = "atos_version.h"
$VersionPath = "../kernal/include"
$VersionPath = "../../kernal/include"
$FileContent = '/**
* Copyright (c) Riven Zheng (zhengheiot@gmail.com).
*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kernal-sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build Kernal Sample CMake
shell: bash
working-directory: samples/kernal_sample
working-directory: .github/samples/kernal_sample
run: |
cmake -S . -B build
cmake --build build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-version-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Execute Version Script
id: version
shell: powershell
working-directory: script
working-directory: .github/script
run: |
$message = powershell.exe -ExecutionPolicy bypass .\auto-version.ps1
echo "value=$message" >> "$env:GITHUB_OUTPUT"
Expand Down
50 changes: 48 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ The goal of the project is to explore and try to provide a lot useful interfaces
If this project was useful to you, give it a ⭐️ and I'll keep improving it. moreover, you can share your ideas we can together improve it. Welcome PRs!!!

<p align="center">

<img src="https://socialify.git.ci/At-EC/At-RTOS/image?description=1&descriptionEditable=At-RTOS%20is%20an%20open%20user-friendly%20real-time%20operating%20system.&font=KoHo&forks=1&issues=1&name=1&owner=1&pattern=Circuit%20Board&stargazers=1&theme=Dark" alt="At-RTOS" width="640" height="320" />

</p>

## Introduction
Expand All @@ -26,6 +24,54 @@ If this project was useful to you, give it a ⭐️ and I'll keep improving it.
* **Tiny footprint:** It's as low as 1KB ROM/few bytes of RAM.
* **Learn Once, Write Anywhere:** We don't make assumptions about the rest of your technology stack, so you can develop new features in At-RTOS without rewriting existing code.

## At-RTOS Structure

```shell
# At-RTOS source code tree
At-RTOS
├── arch
│ ├── arch32
│ │ └── arm
│ │ └── cmsis
│ │ └── include
│ │ └── *.h
│ ├── arch.h
│ └── CMakeLists.txt
├── clock
│ ├── include
│ │ └── clock_tick.h
│ ├── clock_systick.c
│ └── CMakeLists.txt
├── port
│ ├── include
│ │ └── port.h
│ ├── port_keil.c
│ └── CMakeLists.txt
├── include
│ ├── atos_configuration.h
│ └── CMakeLists.txt
├── kernal
│ ├── include
│ │ ├── at_rtos.h
│ │ ├── atos_version.h
│ │ └── *.h
│ ├── basic.c
│ ├── event.c
│ ├── kernal.c
│ ├── kernal_thread.c
│ ├── linker.c
│ ├── list.c
│ ├── mutex.c
│ ├── queue.c
│ ├── semaphore.c
│ ├── thread.c
│ ├── timer.c
│ ├── trace.c
│ └── CMakeLists.txt
├── kernal_idle.c
└── CMakeLists.txt
```

## What's New

[v1.0.0] Welcome to At-RTOS. v1.0.0 was released now. A basic RTOS feature was implemented in the kernal system, Pls enjoy it (:
Expand Down

0 comments on commit 6fda0ee

Please sign in to comment.