Hi,
I am trying to implement DALI-104 (IEC-62386:104:2019) on top of openThread protocol.
I am using Thread: CoAP Client and Thread: CoAP Server and want to configure these codes according to DALI-104 standards.
According to standards, all devices connected to network must be full thread device.(FTD)
I am not sure; is it impossible to send multicast message to SED or MED device?
In the CoAP example, I think I use FTD, because when I connect three device to each other, there is one leader and two router. However, there is a function such that
static void on_mtd_mode_toggle(uint32_t med);
Also there is a function pointer ;
* @param[in] val 1 if the MTD is in MED mode
* 0 if the MTD is in SED mode
*/
typedef void (*mtd_mode_toggle_cb_t)(uint32_t val);
But I can't see a function or variable whose name start with ftd.
Finally, my purpose is to make all devices FTD. What kind of changes should I do?