Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

init j1939 datalink #44

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
38309bf
init j1939 datalink
JannesBrands Jan 27, 2024
bf52d30
remove socketcan feature and move socketcan to dev dependency
Jan 27, 2024
4b15403
extend address helper functions
Jan 27, 2024
aa657d7
add custom error for priority and helper functions
Jan 27, 2024
bfb4a82
socketcan only on unix platforms
Jan 27, 2024
d611862
replace old id code and remove tests to add them later again
Jan 27, 2024
bb2428a
fix mod.rs
Jan 27, 2024
b4cdd4c
compiling but tests are missing
Feb 7, 2024
0299a21
fix clippy
Feb 7, 2024
448abf5
clippy allow enum variant names
Feb 7, 2024
a31ff25
simple example without library usage yet
JannesBrands Feb 11, 2024
2133ea4
fmt
Feb 11, 2024
e9e8d1e
add standard id support & testing of pgn
Feb 15, 2024
ce79721
adds a ton of testing, documentation & fixes
JannesBrands Feb 21, 2024
5b87c07
fix unused import
JannesBrands Feb 21, 2024
6a98902
adding tests to standard id
JannesBrands Feb 21, 2024
5a7da26
adding doc
JannesBrands Feb 21, 2024
073356f
add test for Default
JannesBrands Feb 21, 2024
0c8d683
Adds tests to ext ID & fixes
JannesBrands Feb 21, 2024
d5914dd
add test
JannesBrands Feb 21, 2024
5010f2b
to be finished
JannesBrands Feb 21, 2024
25e97f3
add important addresses & addr ranges, documentation
JannesBrands Feb 22, 2024
ff93894
forward example only on linux (for this moment)
JannesBrands Feb 22, 2024
a8dc97c
..
JannesBrands Feb 22, 2024
97d6ca0
fix
JannesBrands Feb 22, 2024
d541b5e
remove wrong import
JannesBrands Feb 22, 2024
4b32adf
..
JannesBrands Feb 22, 2024
6a51750
remove confusing clippy hint
JannesBrands Feb 22, 2024
24f567a
borrow
JannesBrands Feb 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clippy allow enum variant names
  • Loading branch information
Jannes Brands committed Feb 7, 2024
commit 448abf5c05a10c7a4744c69e215a4cba9abcf02f
1 change: 1 addition & 0 deletions src/object_pool/object.rs
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ use crate::object_pool::object_id::ObjectId;
use crate::object_pool::{Colour, ObjectType};

#[derive(Debug)]
#[allow(clippy::enum_variant_names)]
pub enum Object {
WorkingSet(WorkingSet),
DataMask(DataMask),
Loading