Skip to content

Commit

Permalink
remove diagnostic CAN filters
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Bidault committed Jul 30, 2018
1 parent 64a0fad commit 2a4f5fc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions api/src/oscc.c
Expand Up @@ -529,10 +529,7 @@ void oscc_update_status( int sig, siginfo_t *siginfo, void *context )

while( vehicle_can_bytes > 0 )
{
if ( obd_frame_callback != NULL &&
( rx_frame.can_id == KIA_SOUL_OBD_WHEEL_SPEED_CAN_ID ||
rx_frame.can_id == KIA_SOUL_OBD_BRAKE_PRESSURE_CAN_ID ||
rx_frame.can_id == KIA_SOUL_OBD_STEERING_WHEEL_ANGLE_CAN_ID ) )
if ( obd_frame_callback != NULL )
{
obd_frame_callback( &rx_frame );
}
Expand Down

0 comments on commit 2a4f5fc

Please sign in to comment.