I2C toy code
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

43 rindas
1.2 KiB

  1. ---
  2. AccessModifierOffset: -2
  3. ConstructorInitializerIndentWidth: 4
  4. AlignEscapedNewlinesLeft: false
  5. AlignTrailingComments: true
  6. AllowAllParametersOfDeclarationOnNextLine: false
  7. AllowShortIfStatementsOnASingleLine: false
  8. AllowShortLoopsOnASingleLine: false
  9. AlwaysBreakTemplateDeclarations: false
  10. AlwaysBreakBeforeMultilineStrings: false
  11. BreakBeforeBinaryOperators: false
  12. BreakConstructorInitializersBeforeComma: false
  13. BinPackParameters: true
  14. ColumnLimit: 120
  15. ConstructorInitializerAllOnOneLineOrOnePerLine: true
  16. DerivePointerBinding: true
  17. ExperimentalAutoDetectBinPacking: false
  18. IndentCaseLabels: true
  19. MaxEmptyLinesToKeep: 1
  20. NamespaceIndentation: None
  21. ObjCSpaceBeforeProtocolList: false
  22. PenaltyBreakComment: 60
  23. PenaltyBreakString: 1000
  24. PenaltyBreakFirstLessLess: 120
  25. PenaltyExcessCharacter: 1000000
  26. PenaltyReturnTypeOnItsOwnLine: 200
  27. PointerBindsToType: false
  28. SpacesBeforeTrailingComments: 1
  29. Cpp11BracedListStyle: false
  30. Standard: Cpp03
  31. IndentWidth: 3
  32. TabWidth: 8
  33. UseTab: Never
  34. BreakBeforeBraces: Linux
  35. IndentFunctionDeclarationAfterType: false
  36. SpacesInParentheses: false
  37. SpaceInEmptyParentheses: false
  38. SpacesInCStyleCastParentheses: false
  39. SpaceAfterControlStatementKeyword: true
  40. SpaceBeforeAssignmentOperators: true
  41. ...