Skip to content

Commit

Permalink
moved to the new SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ypopovych committed Feb 13, 2024
1 parent 115e2ae commit a7d428b
Show file tree
Hide file tree
Showing 107 changed files with 1,154 additions and 2,596 deletions.
21 changes: 12 additions & 9 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
{
"env": {
"BOLOS_SDK": "~/.ledger/sdk/nanos-secure-sdk",
"BOLOS_ENV": "~/.ledger/env",
"GCC_COMPILER_NAME": "gcc-arm-none-eabi-10.3-2021.10"
"BOLOS_SDK": "~/.ledger/sdk",
"ARM_GCC": "~/.ledger/gcc-arm-none-eabi-13.2-2023.10"
},
"configurations": [
{
"name": "Nano S",
"includePath": [
"${workspaceFolder}/src",
"${workspaceFolder}/build/**",
"${env:BOLOS_ENV}/${env:GCC_COMPILER_NAME}/arm-none-eabi/include",
"${env:ARM_GCC}/arm-none-eabi/include/*",
"${env:BOLOS_SDK}/include/*",
"${env:BOLOS_SDK}/target/nanos/include/*",
"${env:BOLOS_SDK}/lib_bagl/include/*",
"${env:BOLOS_SDK}/lib_ux/include/*",
"${env:BOLOS_SDK}/lib_cxng/include/*"
"${env:BOLOS_SDK}/lib_cxng/include/*",
"${env:BOLOS_SDK}/lib_standard_app/*"
],
"defines": [
"TARGET_NANOS",
Expand Down Expand Up @@ -43,12 +45,13 @@
"PATCH_VERSION=0",
"IO_SEPROXYHAL_BUFFER_SIZE_B=128",
"HAVE_UX_FLOW",
"DEBUG_BUILD=1",
"DEBUG=1",
"HAVE_PRINTF",
"PRINTF=screen_printf"
"PRINTF=screen_printf",
"_DEFAULT_SOURCE"
],
"compilerPath": "${env:BOLOS_ENV}/${env:GCC_COMPILER_NAME}/bin/arm-none-eabi-gcc",
"cStandard": "c99",
"compilerPath": "${env:ARM_GCC}/bin/arm-none-eabi-gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-arm",
"browse": {
Expand Down
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-vscode.cpptools",
"LedgerHQ.ledger-dev-tools",
]
}
26 changes: 0 additions & 26 deletions .vscode/launch.json

This file was deleted.

21 changes: 4 additions & 17 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
{
"files.associations": {
"*.h": "c",
"cstdio": "c",
"optional": "c",
"istream": "c",
"ostream": "c",
"ratio": "c",
"system_error": "c",
"array": "c",
"functional": "c",
"tuple": "c",
"type_traits": "c",
"utility": "c",
"limits": "c",
"numeric": "c",
"stop_token": "c"
"format": "c"
},
"C_Cpp.clang_format_path": "/usr/bin/clang-format",
"editor.formatOnSave": true,
"cmake.configureOnOpen": false
"editor.formatOnSave": false,
"python.terminal.activateEnvironment": false,
"git.ignoreLimitWarning": true,
}
111 changes: 0 additions & 111 deletions .vscode/tasks.json

This file was deleted.

Loading

0 comments on commit a7d428b

Please sign in to comment.