matemat/messages.h

70 lines
2.1 KiB
C
Raw Permalink Normal View History

2021-01-19 19:30:35 +01:00
#ifndef _MESSAGES_H
#define _MESSAGES_H
#include <stdint.h>
#define CAN_HOSTID_FEEDBACK 0x000
#define CAN_HOSTID_POWER 0x001
2021-03-06 13:08:33 +01:00
#define CAN_HOSTID_DISPLAY 0x002
2021-01-19 19:30:35 +01:00
#define CAN_HOSTID_BROADCAST 0x00f
#define CAN_HOSTID_MASK 0x00f
#define CAN_MSG_FEEDBACK_STATUS 0x010
typedef struct {
2021-01-20 15:41:43 +01:00
uint8_t bits[2];
2021-01-19 19:30:35 +01:00
} can_msg_feedback_status_t;
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_RESET_SW 0
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_RESET_SW 0x04
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_EMPTY_H 0
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_EMPTY_H 0x02
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_EMPTY_G 0
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_EMPTY_G 0x01
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_EMPTY_F 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_EMPTY_F 0x80
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_EMPTY_E 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_EMPTY_E 0x40
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_EMPTY_D 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_EMPTY_D 0x20
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_END_H 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_END_H 0x10
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_END_G 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_END_G 0x08
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_END_F 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_END_F 0x04
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_END_E 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_END_E 0x02
2021-01-31 19:35:27 +01:00
#define CAN_MSG_FEEDBACK_STATUS_FIELD_END_D 1
2021-01-20 15:41:43 +01:00
#define CAN_MSG_FEEDBACK_STATUS_BIT_END_D 0x01
2021-01-19 19:30:35 +01:00
#define CAN_MSG_POWER_STATUS 0x011
typedef struct {
2021-01-20 15:41:43 +01:00
uint8_t bits[2];
2021-01-19 19:30:35 +01:00
} can_msg_power_status_t;
2021-03-06 13:08:33 +01:00
#define CAN_MSG_DISPLAY_STATUS 0x012
typedef struct {
uint8_t buttons;
} can_msg_display_status_t;
2021-01-19 19:30:35 +01:00
#define CAN_MSG_POWER_DISPENSE 0x021
typedef uint8_t can_msg_power_dispense_t;
#define CAN_MSG_POWER_DISPENSE_OFF 0x00
#define CAN_MSG_POWER_DISPENSE_SLOT1 0x01
#define CAN_MSG_POWER_DISPENSE_SLOT2 0x02
#define CAN_MSG_POWER_DISPENSE_SLOT3 0x03
#define CAN_MSG_POWER_DISPENSE_SLOT4 0x04
#define CAN_MSG_POWER_DISPENSE_SLOT5 0x05
2021-03-06 13:08:33 +01:00
#define CAN_MSG_DISPLAY_CMD 0x022
typedef struct {
uint8_t address;
2021-05-04 23:51:16 +02:00
uint8_t data[7];
2021-03-06 13:08:33 +01:00
} can_msg_display_cmd_t;
2021-01-19 19:30:35 +01:00
#define CAN_MSG_AUTO_STATUS 0x04f
typedef uint8_t can_msg_auto_status_t;
#define CAN_MSG_AUTO_STATUS_DISABLE 0x00
#define CAN_MSG_AUTO_STATUS_ENABLE 0x01
#endif