NEW: release DJI Payload-SDK version 3.13.1

Signed-off-by: DJI <dev@dji.com>
This commit is contained in:
DJI
2025-09-17 01:12:22 +08:00
parent d856dd6ee8
commit 2f16cc26fa
16 changed files with 127 additions and 17 deletions

View File

@ -66,6 +66,7 @@ start:
<< "| [b] Slow rotate blade sample, only support on M400 |\n"
<< "| [c] Select FTS pwm trigger position, support on M4/M4T/M4D/M4TD |\n"
<< "| [d] Select FTS pwm trigger position, support on M400 |\n"
<< "| [f] Flight controller sample - Set the RC lost action enable, execute the RC lost action when RC is lost |\n"
<< std::endl;
std::cin >> inputSelectSample;
@ -114,6 +115,9 @@ start:
case 'd': // for m400
DjiTest_FlightControlFtsPwmTriggerSample(DJI_MOUNT_POSITION_EXTENSION_PORT_V2_NO4, "DJI_MOUNT_POSITION_EXTENSION_PORT_V2_NO4");
break;
case 'f':
DjiTest_FlightControlRunSample(E_DJI_TEST_FLIGHT_CTRL_SAMPLE_SELECT_RC_LOST_ACTION_STATUS_ENBALE);
break;
case 'q':
break;
default:

View File