mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-25 09:15:42 +03:00
9 lines
No EOL
320 B
JavaScript
9 lines
No EOL
320 B
JavaScript
function tab_initialize_initial_setup() {
|
|
$('a.calibrateAccel').click(function() {
|
|
send_message(MSP_codes.MSP_ACC_CALIBRATION, MSP_codes.MSP_ACC_CALIBRATION);
|
|
});
|
|
|
|
$('a.calibrateMag').click(function() {
|
|
send_message(MSP_codes.MSP_MAG_CALIBRATION, MSP_codes.MSP_MAG_CALIBRATION);
|
|
});
|
|
} |