mirror of https://github.com/commaai/panda.git
67 lines
1.3 KiB
C
67 lines
1.3 KiB
C
int default_rx_hook(CAN_FIFOMailBox_TypeDef *to_push) {
|
|
UNUSED(to_push);
|
|
return true;
|
|
}
|
|
|
|
// *** no output safety mode ***
|
|
|
|
static void nooutput_init(int16_t param) {
|
|
UNUSED(param);
|
|
controls_allowed = false;
|
|
relay_malfunction_reset();
|
|
}
|
|
|
|
static int nooutput_tx_hook(CAN_FIFOMailBox_TypeDef *to_send) {
|
|
UNUSED(to_send);
|
|
return false;
|
|
}
|
|
|
|
static int nooutput_tx_lin_hook(int lin_num, uint8_t *data, int len) {
|
|
UNUSED(lin_num);
|
|
UNUSED(data);
|
|
UNUSED(len);
|
|
return false;
|
|
}
|
|
|
|
static int default_fwd_hook(int bus_num, CAN_FIFOMailBox_TypeDef *to_fwd) {
|
|
UNUSED(bus_num);
|
|
UNUSED(to_fwd);
|
|
return -1;
|
|
}
|
|
|
|
const safety_hooks nooutput_hooks = {
|
|
.init = nooutput_init,
|
|
.rx = default_rx_hook,
|
|
.tx = nooutput_tx_hook,
|
|
.tx_lin = nooutput_tx_lin_hook,
|
|
.fwd = default_fwd_hook,
|
|
};
|
|
|
|
// *** all output safety mode ***
|
|
|
|
static void alloutput_init(int16_t param) {
|
|
UNUSED(param);
|
|
controls_allowed = true;
|
|
relay_malfunction_reset();
|
|
}
|
|
|
|
static int alloutput_tx_hook(CAN_FIFOMailBox_TypeDef *to_send) {
|
|
UNUSED(to_send);
|
|
return true;
|
|
}
|
|
|
|
static int alloutput_tx_lin_hook(int lin_num, uint8_t *data, int len) {
|
|
UNUSED(lin_num);
|
|
UNUSED(data);
|
|
UNUSED(len);
|
|
return true;
|
|
}
|
|
|
|
const safety_hooks alloutput_hooks = {
|
|
.init = alloutput_init,
|
|
.rx = default_rx_hook,
|
|
.tx = alloutput_tx_hook,
|
|
.tx_lin = alloutput_tx_lin_hook,
|
|
.fwd = default_fwd_hook,
|
|
};
|