mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
10 lines
No EOL
257 B
JavaScript
10 lines
No EOL
257 B
JavaScript
function tab_initialize_about() {
|
|
ga_tracker.sendAppView('About Page');
|
|
|
|
// enable data pulling
|
|
timers.push(setInterval(about_data_poll, 50));
|
|
}
|
|
|
|
function about_data_poll() {
|
|
send_message(MSP_codes.MSP_STATUS, MSP_codes.MSP_STATUS);
|
|
} |