Skip to content

Commit

Permalink
Merge pull request #78 from Apehaenger/feature/subscribe
Browse files Browse the repository at this point in the history
Better support for CoverUI's "with Display" Proposal
  • Loading branch information
ClemensElflein committed Mar 10, 2024
2 parents 2a22647 + 8e2971b commit 87cdaad
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 12 deletions.
48 changes: 38 additions & 10 deletions Firmware/LowLevel/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

#define IMU_CYCLETIME 20 // cycletime for refresh IMU data
#define STATUS_CYCLETIME 100 // cycletime for refresh analog and digital Statusvalues
#define UI_SET_LED_CYCLETIME 1000 // cycletime for refresh UI status LEDs
#define UI_GET_VERSION_CYCLETIME 5000 // cycletime for UI Get_Version request (UI available check)
#define UI_GET_VERSION_TIMEOUT 100 // timeout for UI Get_Version response (UI available check)

Expand Down Expand Up @@ -86,7 +85,7 @@ MP3Sound my_sound; // Soundsystem
unsigned long last_imu_millis = 0;
unsigned long last_status_update_millis = 0;
unsigned long last_heartbeat_millis = 0;
unsigned long last_UILED_millis = 0;
unsigned long next_ui_msg_millis = 0;

unsigned long lift_emergency_started = 0;
unsigned long tilt_emergency_started = 0;
Expand Down Expand Up @@ -119,13 +118,16 @@ bool ROS_running = false;
unsigned long charging_disabled_time = 0;

float imu_temp[9];
uint16_t ui_version = 0; // Last received UI (firmware =? protocol) version. 200 = Latest Button-/LED-CoverUI. >= 300 = More intelligent Display which handles values & states instead of LEDs & Buttons?!

uint16_t ui_version = 0; // Last received UI firmware version
uint8_t ui_topic_bitmask = Topic_set_leds; // UI subscription, default to Set_LEDs
uint16_t ui_interval = 1000; // UI send msg (LED/State) interval (ms)

void sendMessage(void *message, size_t size);
void sendUIMessage(void *message, size_t size);
void onPacketReceived(const uint8_t *buffer, size_t size);
void onUIPacketReceived(const uint8_t *buffer, size_t size);
void manageUILEDS();
void manageUISubscriptions();

void setRaspiPower(bool power) {
// Update status bits in the status message
Expand Down Expand Up @@ -220,12 +222,12 @@ void updateEmergency() {
if (last_emergency != (emergency_state & 1)) {
sendMessage(&status_message, sizeof(struct ll_status));

// Update LEDs instantly
manageUILEDS();
// Update UI instantly
manageUISubscriptions();
}
}

// deals with the pyhsical information an control the UI-LEDs und buzzer in depency of voltage und current values
// Deals with the physical information and control the UI-LEDs und buzzer in dependency of voltage und current values
void manageUILEDS() {
// Show Info Docking LED
if ((status_message.charging_current > 0.80f) && (status_message.v_charge > 20.0f))
Expand Down Expand Up @@ -314,6 +316,25 @@ void manageUILEDS() {
sendUIMessage(&leds_message, sizeof(leds_message));
}

// Manage send status to UI, dependent on ui_topic_bitmask (subscription)
void manageUISubscriptions()
{
if (ui_topic_bitmask & Topic_set_leds)
{
manageUILEDS();
}

if (ui_topic_bitmask & Topic_set_ll_status)
{
sendUIMessage(&status_message, sizeof(struct ll_status));
}

if (ui_topic_bitmask & Topic_set_hl_state)
{
sendUIMessage(&last_high_level_state, sizeof(struct ll_high_level_state));
}
}

void setup1() {
// Core
digitalWrite(LED_BUILTIN, HIGH);
Expand Down Expand Up @@ -527,6 +548,12 @@ void onUIPacketReceived(const uint8_t *buffer, size_t size) {
struct msg_event_rain *msg = (struct msg_event_rain *)buffer;
stock_ui_rain = (msg->value < msg->threshold);
}
else if (buffer[0] == Get_Subscribe && size == sizeof(struct msg_event_subscribe))
{
struct msg_event_subscribe *msg = (struct msg_event_subscribe *)buffer;
ui_topic_bitmask = msg->topic_bitmask;
ui_interval = msg->interval;
}
}

void onPacketReceived(const uint8_t *buffer, size_t size) {
Expand Down Expand Up @@ -678,9 +705,10 @@ void loop() {
#endif
}

if (now - last_UILED_millis > UI_SET_LED_CYCLETIME) {
manageUILEDS();
last_UILED_millis = now;
if (now > next_ui_msg_millis)
{
next_ui_msg_millis = now + ui_interval;
manageUISubscriptions();
#ifdef ENABLE_SOUND_MODULE
if (sound_available) {
my_sound.processSounds();
Expand Down
23 changes: 21 additions & 2 deletions Firmware/LowLevel/src/ui_board.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ enum TYPE
Set_LEDs = 0xB2,
Get_Button = 0xB3,
Get_Emergency = 0xB4, // Stock-CoverUI
Get_Rain = 0xB5 // Stock-CoverUI
Get_Rain = 0xB5, // Stock-CoverUI
Get_Subscribe = 0xB6
};


// Function definiton for the 18 LEDS
enum LED_id
{
Expand Down Expand Up @@ -71,6 +71,13 @@ enum Emergency_state
Emergency_lift2 = 0b10000
};

enum Topic_state
{
Topic_set_leds = 1 << 0,
Topic_set_ll_status = 1 << 1,
Topic_set_hl_state = 1 << 2,
};

#pragma pack(push, 1)
struct msg_get_version
{
Expand Down Expand Up @@ -148,6 +155,18 @@ struct msg_event_emergency
} __attribute__((packed));
#pragma pack(pop)

// Cover UI might subscribe in what data it's interested to receive

#pragma pack(push, 1)
struct msg_event_subscribe
{
uint8_t type; // Command type
uint8_t topic_bitmask; // Bitmask of data subscription(s), see Topic_state
uint16_t interval; // Interval (ms) how often to send topic(s)
uint16_t crc; // CRC 16
} __attribute__((packed));
#pragma pack(pop)

void setLed(struct msg_set_leds &msg, int led, uint8_t state);

void setBars7(struct msg_set_leds &msg, double value);
Expand Down

0 comments on commit 87cdaad

Please sign in to comment.