Twillpower
Twillpower
thank you, sir
Hello, My current solution is to use ucov instead of ccov.
The version I am currently using is 1.0.0. I only use mstp. IP is not currently used. Both ccov and ucov can run through.
I don’t know if my understanding is wrong. Only the master device can join the token ring, and only when one of the master devices gets the token can it...
thank you, sir
``` typedef struct BACnet_Subscribe_COV_Data { uint32_t subscriberProcessIdentifier; BACNET_OBJECT_ID monitoredObjectIdentifier; bool cancellationRequest; /* true if this is a cancellation request */ bool issueConfirmedNotifications; /* optional */ uint32_t lifetime; /* seconds, optional...
Thank you, I understand, but the parameter of this function is uint32_t, and the minimum value is 1. If the status changes, but the notification is sent after 1s, the...
``` void my_task() { while(1) { handler_cov_timer_seconds(1); wy_is_people = wy_get_is_people(); HBD_LAMP_Is_People_Set(0, wy_is_people); vTaskDelay(10 / portTICK_PERIOD_MS); // or vTaskDelay(1000 / portTICK_PERIOD_MS); ? } } ``` emmm, what I mean is probably...
Thanks, I roughly got it, I'm building cov into a separate task now. ``` void wy_updata_cov(void) { AIR_INFO m_air_info_data = {0}; struct mstimer COV_Timer; mstimer_set(&COV_Timer, 1 * 1000); while(1) {...
I browsed through the issue you provided, but did not find the part related to my problem, and did not find the relevant solution. My error was caused by the...