optimizing

pull/3/head
cTn 12 years ago
parent 6e2afc6913
commit 137edb2b37

@ -1,7 +1,6 @@
function tab_initialize_motor_outputs() {
// enable Motor data pulling
motor_poll = setInterval(motorPoll, 50);
timers.push(motor_poll);
timers.push(setInterval(motorPoll, 50));
}
function motorPoll() {

@ -46,8 +46,7 @@ function tab_initialize_receiver() {
};
// enable RC data pulling
receiver_poll = setInterval(receiverPoll, 50);
timers.push(receiver_poll);
timers.push(setInterval(receiverPoll, 50));
// UI Hooks
$('.tunings input').change(function() {

Loading…
Cancel
Save