Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

<HELIOS> SiFive FE310 Platform test #220

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c71fcfd
<CC_OS> Bug Fixed
pranjalchanda08 Dec 30, 2022
f019b8b
<CC_OS> Demo initial commit
pranjalchanda08 Jan 1, 2023
98dacfe
<CC_OS> Add Test Project files
pranjalchanda08 Jan 4, 2023
78d11db
<CC_OS> Test Application created
pranjalchanda08 Jan 4, 2023
aded497
Self Review comments update
pranjalchanda08 Jan 4, 2023
11a7154
<CC_OS> Review Comments
pranjalchanda08 Jan 5, 2023
98c8a1b
<CC_OS> Task defination re-structuring
pranjalchanda08 Jan 5, 2023
8f9e401
<CC_OS> Compilation fixed
pranjalchanda08 Jan 5, 2023
6192e16
<CC_OS> Semaphore bug fix
pranjalchanda08 Jan 6, 2023
bdb8cd7
Review Commit
pranjalchanda08 Jan 10, 2023
8fe9e07
Comment changes
pranjalchanda08 Jan 12, 2023
e67cec7
<CC_OS> Callback sys, Power save user callback
pranjalchanda08 Jan 14, 2023
4249fce
<CC_OS> - cc_os_config.h done by cc_os_config.mk (#208)
pranjalchanda08 Jan 15, 2023
d480238
<CC_OS> Anti-deadlock task functions add.
pranjalchanda08 Jan 26, 2023
e888812
<CC_OS> Anti-deadlock scheduler function and Pre-sched callback added…
pranjalchanda08 Jan 27, 2023
8d5d6a5
<CC_OS> Add task ID
pranjalchanda08 Jan 29, 2023
128caba
<CC_OS> Comment Addressed
pranjalchanda08 Jan 29, 2023
ccf4c86
<CC_OS> Comment addressed
pranjalchanda08 Jan 30, 2023
e87e068
<FE310> Fixed memory alignment for RODATA
akashkollipara Jan 23, 2023
21248e5
<AVR8> Updated ctx mgnt frame to reduce stk use
akashkollipara Jan 25, 2023
8bf74da
<CC_OS> Task Create tested
pranjalchanda08 Jan 31, 2023
9f9b6dd
Merge branch 'cc_os_stage' into test/pranjalchanda08/181-cc_os-testin…
pranjalchanda08 Jan 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
<CC_OS> - cc_os_config.h done by cc_os_config.mk (#208)
Signed-off-by: panjalchanda08 <pranjalchanda08@gmail.com>
  • Loading branch information
pranjalchanda08 committed Jan 15, 2023
commit 4249fcee383cc63d109948e117ff2ad6c222af6d
70 changes: 0 additions & 70 deletions src/include/visor/terravisor/cc_os/cc_os_config.h

This file was deleted.

1 change: 0 additions & 1 deletion src/include/visor/terravisor/cc_os/cc_os_tasks.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#include "status.h"
#include "stdlib.h"
#include "stdint.h"
#include <terravisor/cc_os/cc_os_config.h>
#include <terravisor/cc_os/utils/cc_os_sched.h>

/*****************************************************
Expand Down
4 changes: 4 additions & 0 deletions src/visor/terravisor/services/kernel/cc_os_config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@
CC_OS_USE_DYNAMIC ?= 1
CC_OS_HEAP_SIZE ?= 1024
CC_OS_MAX_THREAD ?= 2
CC_OS_IDLE_TASK_PRIORITY := 1
CC_OS_IDLE_TASK_NAME ?= \"CC_OS_IDLE\"
CC_OS_IDLE_TASK_STACK_LEN ?= 255
CC_OS_POWER_SAVE_EN ?= 0

$(eval $(call add_define,CC_OS_USE_DYNAMIC))
$(eval $(call add_define,CC_OS_HEAP_SIZE))
$(eval $(call add_define,CC_OS_MAX_THREAD))
$(eval $(call add_define,CC_OS_IDLE_TASK_NAME))
$(eval $(call add_define,CC_OS_IDLE_TASK_PRIORITY))
$(eval $(call add_define,CC_OS_IDLE_TASK_STACK_LEN))
$(eval $(call add_define,CC_OS_POWER_SAVE_EN))
1 change: 0 additions & 1 deletion src/visor/terravisor/services/kernel/cc_os_sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
/*****************************************************
* INCLUDES
*****************************************************/
#include <terravisor/cc_os/cc_os_config.h>
#include <terravisor/cc_os/utils/cc_os_sched.h>

/*****************************************************
Expand Down
3 changes: 1 addition & 2 deletions src/visor/terravisor/services/kernel/cc_os_tasks.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <string.h>
#include <stdlib.h>
#include <arch.h>
#include <terravisor/cc_os/cc_os_config.h>
#include <terravisor/cc_os/cc_os.h>

/*****************************************************
Expand Down Expand Up @@ -347,7 +346,7 @@ void cc_os_run (void)
&_cc_os_idle_task_fn,
&g_sched_ctrl,
CC_OS_IDLE_TASK_PRIORITY,
CC_OS_IDLE_STACK_LEN,
CC_OS_IDLE_TASK_STACK_LEN,
(uintptr_t) _cc_os_stack);

/* Initialise scheduler */
Expand Down