.gitignore 405 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Object files
  2. *.o
  3. # Libraries
  4. *.lib
  5. *.a
  6. # Shared objects (inc. Windows DLLs)
  7. *.dll
  8. *.so
  9. *.so.*
  10. *.dylib
  11. # Executables
  12. *.exe
  13. *.out
  14. *.app
  15. #KEIL的过程文件
  16. *.crf
  17. *.o
  18. *.d
  19. *.axf
  20. *.htm
  21. *.lnp
  22. *.sct
  23. *.dep
  24. *.bin
  25. *.hex
  26. *.lst
  27. *.map
  28. *.uvguix.*
  29. *.dbgconf
  30. *.TMP
  31. *.elf
  32. OutPut/
  33. build/
  34. # vscode,vim等杂项
  35. .vscode/
  36. *.swp
  37. *.pdf
  38. .cache/
  39. tags
  40. compile_commands.json
  41. compile_flags.txt
  42. .ycm_extra_conf.py
  43. .idea/
  44. /.vs