-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: automatic CAN filter configuration #20
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work, looks really good. Some small tweaks but I think this will work well. I'd like to test this in hardware before we merge to main, since it's pretty critical to the function!
src/rtcan.c
Outdated
@@ -209,6 +189,54 @@ rtcan_status_t rtcan_init(rtcan_handle_t* rtcan_h, | |||
*/ | |||
rtcan_status_t rtcan_start(rtcan_handle_t* rtcan_h) | |||
{ | |||
/* Since the subscriber ID list is known, we can configure the CAN ID Filter now */ | |||
|
|||
uint32_t can_id_list[RTCAN_HASHMAP_SIZE] = {0}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps counterintuitively there can be more subscribers than hashmap entries, so I think the size of this array should be replaced with something like NUM_IDS_PER_FILTER * NUM_FILTERS
.
The reason there can be more subscribers than hashmap entries is that when two IDs result in a hash collision (same hash for different CAN ID), they are combined in that hashmap entry as a singly linked list using "separate chaining" (there are some notes in the docs folder about this implementation). The actual subscribers are allocated from a memory pool, which is ultimately what determines the maximum number of subscriptions.
src/rtcan.c
Outdated
{ | ||
CAN_FilterTypeDef filter; | ||
filter.FilterActivation = ENABLE; | ||
filter.FilterFIFOAssignment = CAN_FILTER_FIFO0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we know what this FIFO assignment does? I don't know if we ever want to use anything other than FIFO0, but maybe its important?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to datasheet: "If there is a match, the message is stored in the associated FIFO". Basically, when there's filter match, the data can be saved either in FIFO0 or FIFO1. Actually, this one may be useful for prioritizing certain IDs over another IDs which are in the same CAN bus.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From slides on the F7 bxCAN peripheral:
"Two receive FIFOs are used by hardware to store incoming messages. Each FIFO can store three complete messages."
So I don't think there's any inherent prioritisation of one FIFO over another, unless we did this as a feature of RTCAN where it will read and distribute the messages from one FIFO first, but I don't think we need that level of prioritisation.
I think we might want to consider using both FIFOs to share the load (so we use all 6 available message slots rather than just the 3 in FIFO0). Maybe having it alternate between FIFOs each loop?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small thing with one of the loops, otherwise looks great. Good spot on adding the iterations through hashmap entries with chained nodes, missed that in the last one.
Some thoughts about the FIFOs, up to you if you want to do that now now or in future.
src/rtcan.c
Outdated
{ | ||
CAN_FilterTypeDef filter; | ||
filter.FilterActivation = ENABLE; | ||
filter.FilterFIFOAssignment = CAN_FILTER_FIFO0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From slides on the F7 bxCAN peripheral:
"Two receive FIFOs are used by hardware to store incoming messages. Each FIFO can store three complete messages."
So I don't think there's any inherent prioritisation of one FIFO over another, unless we did this as a feature of RTCAN where it will read and distribute the messages from one FIFO first, but I don't think we need that level of prioritisation.
I think we might want to consider using both FIFOs to share the load (so we use all 6 available message slots rather than just the 3 in FIFO0). Maybe having it alternate between FIFOs each loop?
src/rtcan.c
Outdated
int number_ids = 0; | ||
|
||
/* Save and count all CAN IDs stored in hashmap */ | ||
for (uint32_t i = 0; i < RTCAN_HASHMAP_SIZE; i++) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Loop iteration limit should be sizeof(can_id_list) / sizeof(uint32_t)
or NUM_FILTERS * NUM_IDS_PER_FILTER
. If you want to go for the second, I might make a new constant TOTAL_FILTER_CAN_IDS
or something to use in both the can_id_list_size
and the loop.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure this should be NUM_FILTERS * NUM_IDS_PER_FILTER
? This would be 28*4=112 which is bigger than size of hashmap. The i
is used only for hashmap entries, not counting can_ids. Instead, I can put break statement in case number ids
will be bigger than NUM_FILTERS * NUM_IDS_PER_FILTER
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake, you're absolutely right. Honestly no idea what I was thinking sorry!
I am not sure what you mean by this. Is that want you meant? I can't assign |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks perfect. I'd like to do some testing on the actual car's CAN bus with this before we merge to main, we should be able to do that soon.
src/rtcan.c
Outdated
int number_ids = 0; | ||
|
||
/* Save and count all CAN IDs stored in hashmap */ | ||
for (uint32_t i = 0; i < RTCAN_HASHMAP_SIZE; i++) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake, you're absolutely right. Honestly no idea what I was thinking sorry!
This should work now. We can test it next time. |
Changes
rtcan_start()
function as the subscriber list is complete at that point.first_hashmap_element
pointer and thesubscriber_counter
tortcan_handle_t
struct. Instead, we have to search linearly to be sure we don't miss any CAN_ID.HAL_CAN_ConfigFilter()
is called for each bank.Related Issue(s)
Closes #4
Closes #5