Skip to content

Commit

Permalink
chore: Remove template file settings
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Dec 7, 2024
1 parent e60dfc1 commit 6e4a48e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 24 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ lib/**/lib*.a

sdkconfig

Testing/

__pycache__/

.pio/
Expand Down
11 changes: 0 additions & 11 deletions .lazy.lua

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*
!.gitignore
!c_cpp_properties.json
!settings.json

11 changes: 0 additions & 11 deletions .vscode/settings.json

This file was deleted.

1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/packages/atauth)
if(${ATSDK_BUILD_TESTS})
message(STATUS "Building functional tests")
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/tests/functional_tests)
enable_testing()
endif()

if(NOT ESP_PLATFORM)
Expand Down
2 changes: 1 addition & 1 deletion generators/arduino/atsdk/lib/atsdk_atsdk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void atlogger_log(const char *tag, const enum atlogger_logging_level level, cons
int len = vsnprintf(NULL, 0, format, args);
char *buf = new char[len + 1];
vsnprintf(buf, len, format, args);
Serial.println(buf);
Serial.print(buf);
delete[] buf;

va_end(args);
Expand Down

0 comments on commit 6e4a48e

Please sign in to comment.