Skip to content

Commit

Permalink
Comment changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pranjalchanda08 authored and akashkollipara committed Jan 13, 2023
1 parent 959bc6e commit 7c49de8
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 48 deletions.
87 changes: 44 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
.scannerwork
sonar-cfamily-reproducer.zip
temp
out/
tools/
backup/
bkp/
.vscode/
*.elf
*.bin
*.d
*.o
*.ko
*.obj
*.dll
*.so
*.so.*
*.dylib
*.lib
*.la
*.lo
*.a
*.ilk
*.map
*.dis
*.new
*.bkp
*.backup
*.b
*.dev
*.old
*.temp
*.tmp
*.sw*
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
*.mod*
*.cmd
*.todo
.scannerwork
.vscode/
sonar-cfamily-reproducer.zip
temp
out/
tools/
backup/
bkp/
projects/
*.elf
*.bin
*.d
*.o
*.ko
*.obj
*.dll
*.so
*.so.*
*.dylib
*.lib
*.la
*.lo
*.a
*.ilk
*.map
*.dis
*.new
*.bkp
*.backup
*.b
*.dev
*.old
*.temp
*.tmp
*.sw*
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
*.mod*
*.cmd
*.todo
3 changes: 2 additions & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"intelliSenseMode": "${default}",
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++14"
"cppStandard": "gnu++14",
"compileCommands": "${workspaceFolder}/.vscode/compile_commands.json"
}
],
"version": 4
Expand Down
2 changes: 1 addition & 1 deletion projects/demo_cc_os.src/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# File Name : build.mk
# Description : This file build project sources and specifies
# project properties
# Primary Author : Pranjal Chdanda [[email protected]]
# Primary Author : Pranjal Chanda [[email protected]]
# Organisation : Cyancore Core-Team
#

Expand Down
2 changes: 1 addition & 1 deletion projects/demo_cc_os.src/project.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* CYANCORE LICENSE
* Copyrights (C) 2019, Cyancore Team
* Copyrights (C) 2019 - 2023, Cyancore Team
*
* File Name : project.c
* Description : This file consists of project srouces
Expand Down
4 changes: 2 additions & 2 deletions projects/demo_cc_os_riscv/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ HEAP_SIZE := 256
STACK_SIZE := 256
STDLOG_MEMBUF := 0
BOOTMSGS := 0
EARLYCON_SERIAL := 0
CONSOLE_SERIAL := 0
EARLYCON_SERIAL := 1
CONSOLE_SERIAL := 1
OBRDLED_ENABLE := 1
TERRAKERN := 1

0 comments on commit 7c49de8

Please sign in to comment.