Skip to content

Commit

Permalink
amcfoc two cores parsing (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
SanLordKevin authored Dec 20, 2024
1 parent 4d47f6b commit 2e69b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/embobj/plus/comm-v2/icub/EoBoards.c
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ extern eObrd_canmonitor_reportmode_t eoboards_string2reportmode(const char * str

extern uint8_t eoboards_type2numberofcores(eObrd_type_t type)
{
return type == eobrd_amc ? 2 : 1;
return ((eobrd_amc == type) || (eobrd_amcfoc == type)) ? 2 : 1;
}


Expand Down

0 comments on commit 2e69b4e

Please sign in to comment.