1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
//!  Provides methods to manipulate the ECUs diagnostic session mode

use crate::{DiagServerResult, DiagnosticServer};

use super::{UDSCommand, UdsDiagnosticServer};

#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
/// UDS Diagnostic session modes. Handled by SID 0x10
pub enum UDSSessionType {
    /// Default diagnostic session mode (ECU is normally in this mode on startup)
    /// This session type does not require the diagnostic server to sent TesterPresent messages
    Default,

    /// This diagnostic session mode enables all diagnostic services related to flashing or programming
    /// the ECU
    Programming,

    /// This diagnostic session mode enabled all diagnostic services and allows adjusting
    /// ECU values
    Extended,

    /// This diagnostic session enables all diagnostic services required to support safety system-related functions
    SafetySystem,

    /// Custom session type. This covers both vehicleManufacturerSpecific modes (0x40-0x5F) and systemSupplierSpecific modes (0x60-0x7E).
    Other(u8),
}

impl From<UDSSessionType> for u8 {
    fn from(from: UDSSessionType) -> u8 {
        match &from {
            UDSSessionType::Default => 0x01,
            UDSSessionType::Programming => 0x02,
            UDSSessionType::Extended => 0x03,
            UDSSessionType::SafetySystem => 0x04,
            &UDSSessionType::Other(x) => x,
        }
    }
}

/// Tells the ECU to enter default diagnostic session mode
///
/// ## Parameters
/// * server - The UDS Diagnostic server
pub fn set_default_mode(server: &mut UdsDiagnosticServer) -> DiagServerResult<()> {
    server
        .execute_command_with_response(
            UDSCommand::DiagnosticSessionControl,
            &[UDSSessionType::Default.into()],
        )
        .map(|_| ())
}

/// Tells the ECU to enter a programming diagnostic session mode
///
/// ## Parameters
/// * server - The UDS Diagnostic server
pub fn set_programming_mode(server: &mut UdsDiagnosticServer) -> DiagServerResult<()> {
    server
        .execute_command_with_response(
            UDSCommand::DiagnosticSessionControl,
            &[UDSSessionType::Programming.into()],
        )
        .map(|_| ())
}

/// Tells the ECU to enter an extended diagnostic session mode
///
/// ## Parameters
/// * server - The UDS Diagnostic server
pub fn set_extended_mode(server: &mut UdsDiagnosticServer) -> DiagServerResult<()> {
    server
        .execute_command_with_response(
            UDSCommand::DiagnosticSessionControl,
            &[UDSSessionType::Extended.into()],
        )
        .map(|_| ())
}

/// Tells the ECU to enter a safety system diagnostic session mode
///
/// ## Parameters
/// * server - The UDS Diagnostic server
pub fn set_safety_system_mode(server: &mut UdsDiagnosticServer) -> DiagServerResult<()> {
    server
        .execute_command_with_response(
            UDSCommand::DiagnosticSessionControl,
            &[UDSSessionType::SafetySystem.into()],
        )
        .map(|_| ())
}

/// Tells the ECU to enter a custom diagnostic session mode
///
/// ## Parameters
/// * server - The UDS Diagnostic server
/// * custom_mode_id - Custom diagnostic session mode
pub fn set_custom_mode(
    server: &mut UdsDiagnosticServer,
    custom_mode_id: u8,
) -> DiagServerResult<()> {
    server
        .execute_command_with_response(
            UDSCommand::DiagnosticSessionControl,
            &[UDSSessionType::Other(custom_mode_id).into()],
        )
        .map(|_| ())
}