Commit df48057a authored by Wenxi Xu's avatar Wenxi Xu
Browse files

分离数据,添加掉线检测

parent dfab78a1
Loading
Loading
Loading
Loading

.clang-fomat

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
// BasedOnStyle: Google
// IndentWidth: 4
// ColumnLimit: 120
 No newline at end of file

.clang-format

0 → 100644
+10 −0
Original line number Diff line number Diff line
BasedOnStyle: LLVM  
IndentWidth: 4
ColumnLimit: 100
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: true
AlignConsecutiveMacros: Consecutive
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: true
ReflowComments: false
SortIncludes: false
 No newline at end of file
+4 −1
Original line number Diff line number Diff line
Checks: "modernize-*,-modernize-use-nullptr,clang-analyzer-*"
Checks: "modernize-*,-modernize-use-nullptr,clang-analyzer-*,-clang-diagnostic-unknown-argument"
WarningsAsErrors: "*"
HeaderFilterRegex: "^(drivers/.*|include/zephyr/drivers/.*)$"
AnalyzeTemporaryDtors: false
FormatStyle: file
SystemHeaders: false
CompileFlags:
  Remove: [-mfp16-format=ieee]
 No newline at end of file

.clangd

0 → 100644
+7 −0
Original line number Diff line number Diff line
Diagnostics:
  Suppress:
    [
      -Wimplicit-function-declaration,
      drv_unknown_argument,
	    - missing-braces
    ]
 No newline at end of file

.idea/.gitignore

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
Loading