big refactoring: J1939, log output, state machine bug fixes
This commit is contained in:
+47
-130
@@ -1,138 +1,55 @@
|
||||
# ---> C
|
||||
# Prerequisites
|
||||
*.d
|
||||
# =========================
|
||||
# STM32CubeIDE / STM32 GCC
|
||||
# =========================
|
||||
|
||||
# Object files
|
||||
# Build output folders
|
||||
/Debug/
|
||||
/Release/
|
||||
|
||||
# Generated compiler/linker artifacts
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
|
||||
# Linker output
|
||||
*.ilk
|
||||
*.map
|
||||
*.exp
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Libraries
|
||||
*.lib
|
||||
*.a
|
||||
*.la
|
||||
*.lo
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.d
|
||||
*.su
|
||||
*.idb
|
||||
*.pdb
|
||||
|
||||
# Kernel Module Compile Results
|
||||
*.mod*
|
||||
*.cmd
|
||||
.tmp_versions/
|
||||
modules.order
|
||||
Module.symvers
|
||||
Mkfile.old
|
||||
dkms.conf
|
||||
|
||||
# ---> CMake
|
||||
CMakeLists.txt.user
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
CMakeScripts
|
||||
Testing
|
||||
Makefile
|
||||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
compile_commands.json
|
||||
CTestTestfile.cmake
|
||||
_deps
|
||||
|
||||
# ---> Eclipse
|
||||
.metadata
|
||||
bin/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*~.nib
|
||||
local.properties
|
||||
.settings/
|
||||
.loadpath
|
||||
.recommenders
|
||||
|
||||
# External tool builders
|
||||
.externalToolBuilders/
|
||||
|
||||
# Locally stored "Eclipse launch configurations"
|
||||
*.launch
|
||||
|
||||
# PyDev specific (Python IDE for Eclipse)
|
||||
*.pydevproject
|
||||
|
||||
# CDT-specific (C/C++ Development Tooling)
|
||||
.cproject
|
||||
|
||||
# CDT- autotools
|
||||
.autotools
|
||||
|
||||
# Java annotation processor (APT)
|
||||
.factorypath
|
||||
|
||||
# PDT-specific (PHP Development Tools)
|
||||
.buildpath
|
||||
|
||||
# sbteclipse plugin
|
||||
.target
|
||||
|
||||
# Tern plugin
|
||||
.tern-project
|
||||
|
||||
# TeXlipse plugin
|
||||
.texlipse
|
||||
|
||||
# STS (Spring Tool Suite)
|
||||
.springBeans
|
||||
|
||||
# Code Recommenders
|
||||
.recommenders/
|
||||
|
||||
# Annotation Processing
|
||||
.apt_generated/
|
||||
.apt_generated_test/
|
||||
|
||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||
.cache-main
|
||||
.scala_dependencies
|
||||
.worksheet
|
||||
|
||||
# Uncomment this line if you wish to ignore the project description file.
|
||||
# Typically, this file would be tracked if it contains build/dependency configurations:
|
||||
#.project
|
||||
|
||||
# ---> macOS
|
||||
.DS_Store
|
||||
|
||||
# ---> STM32CubeIDE / ARM GCC
|
||||
*.bin
|
||||
*.cyclo
|
||||
*.list
|
||||
*.map
|
||||
*.a
|
||||
*.lib
|
||||
*.out
|
||||
*.exp
|
||||
*.ilk
|
||||
subdir.mk
|
||||
sources.mk
|
||||
objects.mk
|
||||
|
||||
# Firmware and executable deliverables (keep out of source history)
|
||||
*.elf
|
||||
*.axf
|
||||
*.bin
|
||||
*.hex
|
||||
*.srec
|
||||
*.verilog
|
||||
|
||||
# Captured logs/traces
|
||||
/logs/
|
||||
*.log
|
||||
|
||||
# Local IDE/OS temp files
|
||||
.DS_Store
|
||||
*.swp
|
||||
*.tmp
|
||||
*.bak
|
||||
*~
|
||||
.metadata/
|
||||
.externalToolBuilders/
|
||||
|
||||
# Local launch configurations
|
||||
*.launch
|
||||
|
||||
# Keep project descriptors/versioned configuration
|
||||
!.project
|
||||
!.cproject
|
||||
!.settings/
|
||||
!.mxproject
|
||||
!*.ioc
|
||||
|
||||
Reference in New Issue
Block a user