fome-fw/firmware/controllers/actuators/main_relay_generated.h

103 lines
1.7 KiB
C
Raw Normal View History

#pragma once
#include "rusefi_types.h"
struct main_relay_s {
2023-03-27 01:38:48 -07:00
// offset 0 bit 0
2021-11-24 05:02:01 -08:00
bool isBenchTest : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 1
2021-11-24 05:02:01 -08:00
bool hasIgnitionVoltage : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 2
2021-11-24 05:02:01 -08:00
bool mainRelayState : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 3
2022-02-01 20:22:53 -08:00
bool delayedShutoffRequested : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 4
2022-02-01 20:22:53 -08:00
bool unusedBit_4_4 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 5
2022-02-01 20:22:53 -08:00
bool unusedBit_4_5 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 6
2022-02-01 20:22:53 -08:00
bool unusedBit_4_6 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 7
2022-02-01 20:22:53 -08:00
bool unusedBit_4_7 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 8
2022-02-01 20:22:53 -08:00
bool unusedBit_4_8 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 9
2022-02-01 20:22:53 -08:00
bool unusedBit_4_9 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 10
2022-02-01 20:22:53 -08:00
bool unusedBit_4_10 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 11
2022-02-01 20:22:53 -08:00
bool unusedBit_4_11 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 12
2022-02-01 20:22:53 -08:00
bool unusedBit_4_12 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 13
2022-02-01 20:22:53 -08:00
bool unusedBit_4_13 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 14
2022-02-01 20:22:53 -08:00
bool unusedBit_4_14 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 15
2022-02-01 20:22:53 -08:00
bool unusedBit_4_15 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 16
2022-02-01 20:22:53 -08:00
bool unusedBit_4_16 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 17
2022-02-01 20:22:53 -08:00
bool unusedBit_4_17 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 18
2022-02-01 20:22:53 -08:00
bool unusedBit_4_18 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 19
2022-02-01 20:22:53 -08:00
bool unusedBit_4_19 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 20
2022-02-01 20:22:53 -08:00
bool unusedBit_4_20 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 21
2022-02-01 20:22:53 -08:00
bool unusedBit_4_21 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 22
2022-02-01 20:22:53 -08:00
bool unusedBit_4_22 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 23
2022-02-01 20:22:53 -08:00
bool unusedBit_4_23 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 24
2022-02-01 20:22:53 -08:00
bool unusedBit_4_24 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 25
2022-02-01 20:22:53 -08:00
bool unusedBit_4_25 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 26
2022-02-01 20:22:53 -08:00
bool unusedBit_4_26 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 27
2022-02-01 20:22:53 -08:00
bool unusedBit_4_27 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 28
2022-02-01 20:22:53 -08:00
bool unusedBit_4_28 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 29
2022-02-01 20:22:53 -08:00
bool unusedBit_4_29 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 30
2022-02-01 20:22:53 -08:00
bool unusedBit_4_30 : 1 {};
2023-03-27 01:38:48 -07:00
// offset 0 bit 31
2022-02-01 20:22:53 -08:00
bool unusedBit_4_31 : 1 {};
2023-03-27 01:38:48 -07:00
};
2022-04-17 13:30:07 -07:00
static_assert(sizeof(main_relay_s) == 4);