This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "doxdocgen.generic.authorName": "YourNickname", | |
| "doxdocgen.generic.authorEmail": "youremail@mail.com", | |
| "doxdocgen.c.commentPrefix": " * ", | |
| "doxdocgen.c.lastLine": " */", | |
| "doxdocgen.file.fileTemplate": "@file {name}", | |
| "doxdocgen.generic.authorTag": "@author {author} ({email})", | |
| "doxdocgen.generic.briefTemplate": "@brief explanations {text}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file syscalls.h | |
| * | |
| * @author Nickname (email@mail.com) | |
| * | |
| * @brief explanations | |
| * | |
| * @copyright Copyright (c) 2024 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file syscalls.c | |
| * | |
| * @author Nickname (email@mail.com) | |
| * | |
| * @brief explanations | |
| * | |
| * @copyright Copyright (c) 2024 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "type": "shell", | |
| "label": "cmake init", | |
| "command": "cmake -S ${workspaceFolder} -B ${workspaceFolder}/build -G Ninja", | |
| "options": { | |
| "cwd": "${workspaceFolder}", | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Cortex Debug", | |
| "cwd": "${workspaceRoot}", | |
| "executable": "build/${workspaceFolderBasename}.elf", | |
| "request": "launch", | |
| "type": "cortex-debug", | |
| "servertype": "openocd", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Win32", | |
| "includePath": [ | |
| "${workspaceFolder}/**" | |
| ], | |
| "defines": [ | |
| "_DEBUG", | |
| "UNICODE", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ignore everything in this folder | |
| * | |
| # except .gitignore file | |
| !.gitignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.17) | |
| set(CMAKE_SYSTEM_NAME Generic) | |
| set(CMAKE_SYSTEM_VERSION 1) | |
| set(CMAKE_C_COMPILER arm-none-eabi-gcc) | |
| set(CMAKE_CXX_COMPILER arm-none-eabi-g++) | |
| set(CMAKE_ASM_COMPILER arm-none-eabi-gcc) | |
| set(CMAKE_AR arm-none-eabi-ar) | |
| set(CMAKE_OBJCOPY arm-none-eabi-objcopy) | |
| set(CMAKE_OBJDUMP arm-none-eabi-objdump) |