Last Updated on : 2024-11-20 02:13:28download
MCU SDK is the MCU code automatically generated according to the product functions defined on the Tuya Developer Platform. It includes communication architecture and protocol parsing architecture. You can directly add the MCU SDK to the current MCU project, facilitating MCU program development.
MCU requirements are as follows. In the case of insufficient resources, you can implement connection protocols by yourself and refer to functions in the SDK.
File | Description |
---|---|
mcu_api.c |
Contain functions that can be called. |
mcu_api.h |
mcu_api.c function declaration. |
protocol.c |
Contain the content processing function of the protocol data. You can add code to the corresponding function as needed and get data sent by the Zigbee module to the MCU. |
protocol.h |
protocol.h contains the following information:
|
system.c |
The implementation of serial communication protocol parsing. |
system.h |
system.h contains the following information:
|
zigbee.h |
Contain Zigbee macro definitions. |
protocol.h
.protocol.c
file and call the function.In the original project, initialize the MCU peripherals, including serial port, external interrupt (button), timer (with the indicator flickering), and more.
Add the .c
and .h
files in the MCU SDK folder to the corresponding header file reference path.
Define the product ID (PID). PRODUCT_KEY
is the PID macro definition. PID is the unique identifier of each product and can be obtained on the product detail page on the Tuya Developer Platform.
#define PRODUCT_KEY "ax23rawjo4np****"
If PRODUCT_KEY
and PID are inconsistent, replace the value of PRODUCT_KEY
with the PID of your product created on the Tuya Developer Platform.
Define the version number. MCU_VER
is the software version, which is 1.0.0
by default. If the MCU needs an OTA function, a newer MCU version number shall be added.
#define MCU_VER "1.0.0"
To support the OTA firmware update, define SUPPORT_MCU_FIRM_UPDATE
and enable OTA update that is disabled by default.
#define SUPPORT_MCU_FIRM_UPDATE
For the OTA update process, see OTA Update Guide.
Modify buffer size according to the DP.
#define ZIGBEE_UART_QUEUE_LMT 256 // The size of receive queues
#define ZIGBEE_UART_RECV_BUF_LMT 128 // Serial port receiving buffer
#define ZIGBEE_UART_SEND_BUF_LMT 128 // Serial port sending buffer
Save the zigbee.h
file to the folder where Zigbee files are stored, such as the main.c
folder.
Call the zigbee_protocol_init()
function in the mcu_api.c
file after the MCU serial port and other peripherals are initialized.
Add the single-byte sending function of the MCU serial port to the uart_transmit_output
function in the protocol.c
file. The sample is as follows.
/**
* @brief encapsulates a generic send function, you shall use their own function to completing this function
* @param[in] {value} send signle data
* @return void
*/
void uart_transmit_output(unsigned char value);
UART3_SendByte(value);
Call the uart_receive_input
function in the mcu_api.c
file in the interrupt function of serial receiving. Pass in the received characters as parameters.
/**
* @brief copy receive data from uart receive interrupt
* @param[in] {value} Data received from interrupt
* @return void
*/
void uart_receive_input(unsigned char value)
{
#error "please call this function in the interrupt function of serial receive, and delete this line"
if(1 == queue_out - queue_in) {
// Serial receiving buffer is full
}else if((queue_in > queue_out) && ((queue_in - queue_out) >= sizeof(zigbee_uart_rx_buf))) {
// Serial receiving buffer is full
}else {
// Serial receiving buffer is not full
if(queue_in >= (unsigned char *)(zigbee_uart_rx_buf + sizeof(zigbee_uart_rx_buf))) {
queue_in = (unsigned char *)(zigbee_uart_rx_buf);
}
*queue_in ++ = value;
}
}
After the MCU enters the while
loop, the zigbee_uart_service()
function in the mcu_api.c
file is called. The sample code structure in main.c
is as follows:
include "zigbee.h"
...
void main(void)
{
zigbee_protocol_init();
...
while(1)
{
zigbee_uart_service();
...
}
}
During the while(1)
, the MCU shall directly call the zigbee_uart_service()
function in mcu_api.c
. After the initialization is successfully completed, it is recommended not to disable the interrupt. If the interrupt must be disabled, the duration of the disabled interrupt must be short. A disabled interrupt might cause data packet loss. Do not call the reporting function during the interrupt.
After the Zigbee module reboots or is paired again, it will send a status query command. The MCU shall report all the DP status of the device to the Zigbee module for synchronization.
protocol.c
and find the all_data_update(void)
function.Do not call the all_data_update()
function. This function will be called actively at a specific time.
/**
* @brief Upload the information of all DPs in the system, to synchronize data between the app and the MCU.
* @param Null
* @return Null
* @note This function shall be called in the SDK. The MCU must implement data reporting in this function, including the data for reporting only and the data for reporting and sending.
*/
void all_data_update(void)
{
//#error "Process the data for reporting and sending and the data for reporting only. Delete the line after processing is completed."
/*
// This code is automatically generated by the Tuya Developer Platform. Modify each sendable and reportable function and report-only function according to the actual data.
mcu_dp_bool_update(DPID_SWITCH, current switch); // Report bool type data;
mcu_dp_value_update(DPID_TEMP_SET, current temperature setting); // Report value type data;
mcu_dp_value_update(DPID_TEMP_CURRENT, current temperature); // Report value type data;
mcu_dp_enum_update(DPID_MODE, current working mode); // Report enumeration data;
mcu_dp_enum_update(DPID_FAN_SPEED_ENUM, current wind speed); // Report enumeration data;
mcu_dp_enum_update(DPID_STATUS, current status); // Report enumeration data;
mcu_dp_bool_update(DPID_ECO, current ECO mode); // Report bool type data;
mcu_dp_bool_update(DPID_DRYING, current drying mode); // Report bool type data;
mcu_dp_bool_update(DPID_VENTILATION, current ventilation mode); // Report bool type data;
mcu_dp_bool_update(DPID_HEAT, current auxiliary heat); // Report bool type data;
mcu_dp_bool_update(DPID_LIGHT, current light); // Report bool type data;
mcu_dp_bool_update(DPID_CHILD_LOCK, current child lock); // Report bool type data;
mcu_dp_bool_update(DPID_BEEP, current beep); // Report bool type data;
mcu_dp_value_update(DPID_HUMIDITY_SET, current humidity setting); // Report value type data;
mcu_dp_value_update(DPID_HUMIDITY_CURRENT, current humidity); // Report value type data;
mcu_dp_enum_update(DPID_TEMP_UNIT_CONVERT, current temperature unit switch); // Report enumeration data;
mcu_dp_enum_update(DPID_COUNTDOWN_SET, current countdown); // Report enumeration data;
mcu_dp_value_update(DPID_COUNTDOWN_LEFT, remaining time of current countdown); // Report value type data;
mcu_dp_fault_update(DPID_FAULT, current fault alert); // Report fault type data;
mcu_dp_value_update(DPID_TEMP_CURRENT_F, current temperature in °F); // Report value type data;
mcu_dp_value_update(DPID_TEMP_SET_F, current temperature setting in °F); // Report value type data;
mcu_dp_bool_update(DPID_SLEEP, current sleep feature); // Report bool type data;
mcu_dp_bool_update(DPID_CLEANING, current self-cleaning); // Report bool type data;
mcu_dp_bool_update(DPID_SWITCH_VERTICAL, current vertical swing); // Report bool type data;
mcu_dp_enum_update(DPID_GEAR_VERTICAL, current vertical swing level); // Report enumeration data;
mcu_dp_value_update(DPID_ANGLE_VERTICAL, current vertical swing angle); // Report value type data;
mcu_dp_bool_update(DPID_SWITCH_HORIZONTAL, current horizontal swing); // Report bool type data;
mcu_dp_enum_update(DPID_GEAR_HORIZONTAL, current horizontal swing level); // Report enumeration data;
mcu_dp_value_update(DPID_ANGLE_HORIZONTAL, current horizontal swing angle); // Report value type data;
mcu_dp_bool_update(DPID_DISPLAY, current screen display switch); // Report bool type data;
*/
}
When the status of a single DP changes, the MCU reports this DP status, and the app updates the display content. The report format is mcu_dp_xxxx_updata(DPID_X,n)
, where DPID_X
is the DP whose status changes. all_data_update()
functions can be called individually. For example,
mcu_dp_bool_update(DPID_SWITCH,1); // Report bool type data
mcu_dp_value_update(DPID_TEMPER_SET,25); // Report value type data
mcu_dp_string_update(DPID_DAY,"1234",4); // Report string data
In the protocol.c
file, each sendable DP has an individual processing function of sending data. The format is dp_download_xxx_handle()
, where xxx
is the DP that can be sent. After the function parses the DP, the MCU shall execute device control accordingly. Take the received switch DP data as an example:
/*****************************************************************************
Function name: dp_download_switch_handle.
Function description: Processing function of DPID_SWITCH.
Input parameters: value indicates data source.
length indicates data length.
Return parameters: Return SUCCESS on success. Return ERROR on a failure.
Instruction: Regarding the data for reporting and sending, the processing results are reported to the app after processing is completed.
*****************************************************************************/
static unsigned char dp_download_switch_handle(const unsigned char value[], unsigned short length)
{
//Example: The current DP type is Bool
unsigned char ret;
//0: Off /1: On
unsigned char switch1;
switch1 = mcu_get_dp_download_bool(value,length);
if(switch1 == 0)
{
// The switch is off
MCU_OFF_switch1();
}
else
{
// The switch is on
MCU_ON_switch1();
}
// Feedback after the DP data is processed
ret = mcu_dp_bool_update(DPID_SWITCH,switch1);
if(ret == SUCCESS)
return SUCCESS;
else
return ERROR;
}
When the device status changes rather than controlled by the app, the MCU shall call mcu_dp_bool_update(DPID_SWITCH_1,switch_1);
to upload the real-time status of the DP (switch) status as feedback. You can also choose the reporting time as needed.
The Zigbee general firmware provides the RF production test function. The module RF test is triggered by the serial port command. After the test is completed, the test result is sent to the MCU through the serial port. The test process requires Tuya Zigbee production test function. For more information about protocol format, see UART Protocol for Zigbee Three-level Architecture.
The MCU determines when to make the Zigbee module enter pairing mode. After the MCU receives the current network status of the Zigbee module, it can send the 0x03
command to make the Zigbee module ready for pairing.
Example: 0x55 aa 02 00 01 03 00 01 01 xx
For more information about the frame format, see Frame format description.
After the MCU and the module are powered on, an initialization configuration is required. Initialization communication includes but is not limited to:
After the module is powered on again, it will query the PID, version number, and pairing mode of the MCU firmware.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback