-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge/cleanup USBIP part 1 * Fix clang-tidy and cleanup errors * Cleaning & washing of code
- Loading branch information
Showing
73 changed files
with
5,720 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
Checks: '*,-modernize-use-emplace,-hicpp-use-emplace,-readability*,-cppcoreguidelines-pro-type-union-access,-hicpp-braces*,-fuchsia*,-llvm-header-guard,-cppcoreguidelines-special-member-functions,-hicpp-special-member-functions' | ||
Checks: '*,-modernize-use-emplace,-hicpp-use-emplace,-readability*,-cppcoreguidelines-pro-type-union-access,-hicpp-braces*,-fuchsia*,-llvm-header-guard,-cppcoreguidelines-special-member-functions,-hicpp-special-member-functions,-clang-diagnostic-unused-command-line-argument' | ||
HeaderFilterRegex: 'parts|utility' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
#pragma once | ||
|
||
// TODO: more descriptive name. | ||
const short table_100k_ntc[][2] = { | ||
{ 25, 125 }, | ||
{ 29, 120 }, | ||
{ 34, 115 }, | ||
{ 40, 110 }, | ||
{ 46, 105 }, | ||
{ 54, 100 }, | ||
{ 64, 95 }, | ||
{ 75, 90 }, | ||
{ 88, 85 }, | ||
{ 105, 80 }, | ||
{ 124, 75 }, | ||
{ 146, 70 }, | ||
{ 173, 65 }, | ||
{ 204, 60 }, | ||
{ 241, 55 }, | ||
{ 282, 50 }, | ||
{ 330, 45 }, | ||
{ 382, 40 }, | ||
{ 439, 35 }, | ||
{ 500, 30 }, | ||
{ 563, 25 }, | ||
{ 625, 20 }, | ||
{ 687, 15 }, | ||
{ 744, 10 }, | ||
{ 796, 5 }, | ||
{ 842, 0 }, | ||
{ 882, -5 }, | ||
{ 915, -10 }, | ||
{ 941, -15 }, | ||
{ 963, -20 }, | ||
{ 979, -25 }, | ||
{ 992, -30 }, | ||
{ 1001, -35 }, | ||
{ 1008, -40 } | ||
}; | ||
|
||
const short table_NCP21WF104J03RA[][2] = { | ||
{ 73, 125 }, | ||
{ 83, 120 }, | ||
{ 95, 115 }, | ||
{ 109, 110 }, | ||
{ 125, 105 }, | ||
{ 144, 100 }, | ||
{ 165, 95 }, | ||
{ 189, 90 }, | ||
{ 217, 85 }, | ||
{ 248, 80 }, | ||
{ 284, 75 }, | ||
{ 323, 70 }, | ||
{ 366, 65 }, | ||
{ 412, 60 }, | ||
{ 462, 55 }, | ||
{ 514, 50 }, | ||
{ 567, 45 }, | ||
{ 620, 40 }, | ||
{ 673, 35 }, | ||
{ 723, 30 }, | ||
{ 770, 25 }, | ||
{ 813, 20 }, | ||
{ 851, 15 }, | ||
{ 885, 10 }, | ||
{ 913, 5 }, | ||
{ 937, 0 }, | ||
{ 957, -5 }, | ||
{ 973, -10 }, | ||
{ 986, -15 }, | ||
{ 995, -20 }, | ||
{ 1003, -25 }, | ||
{ 1009, -30 }, | ||
{ 1013, -35 }, | ||
{ 1016, -40 } | ||
}; |
Submodule simavr
updated
28 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.