Loading...
Searching...
No Matches
8#define CAT_CAN_INTF(x) CAN##x
9#define CAN_INTF(INTF) CAT_CAN_INTF(INTF)
12#define CAN_AB_INTF CAN_INTF(CAN_AB)
13#define CAN_PAYLOAD_AV 2
14#define CAN_PAYLOAD_AV_INTF CAN_INTF(CAN_PAYLOAD_AV)
20#define ACCEL_LAUNCH 5.0f
21#define MAIN_ALTITUDE_METERS 396.0f
30 #define ACCEL_AXES_1 ((const uint8_t[]){0, 1, 2})
31 #define ACCEL_SIGN_1 ((const int8_t[]){1, 1, -1})
34 #define ACCEL_AXES_1 ((const uint8_t[]){0, 2, 1})
35 #define ACCEL_SIGN_1 ((const int8_t[]){1, 1, -1})
41 #define ACCEL_AXES_2 ((const uint8_t[]){0, 1, 2})
42 #define ACCEL_SIGN_2 ((const int8_t[]){1, 1, -1})
45 #define ACCEL_AXES_2 ((const uint8_t[]){2, 0, 1})
46 #define ACCEL_SIGN_2 ((const int8_t[]){1, -1, 1})
50#define GYRO_AXES ((const uint8_t[]){0, 2, 1})
51#define GYRO_SIGN ((const int8_t[]){1, 1, 1})