This website works better with JavaScript.
Explore
Help
Sign In
coolfactor
/
quadrotor
Watch
1
Star
0
Fork
You've already forked quadrotor
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
Quadrotor from scratch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35
Commits
1
Branch
0
Tags
214 KiB
Tree:
8b3ff9feba
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '8b3ff9feba'
${ noResults }
quadrotor
/
abs.h
4 lines
54 B
Raw
Normal View
History
Unescape
Escape
Improve handling of arming, providing LED blink codes if the arming fails. Also, implement a software watchdog to make sure that the main real-time modules are actually being run. Provide a panic facility, also giving blink codes to indicate the panic reason.
12 years ago
/* abs.h */
#
define abs(x) (((x) < 0)? (-(x)) : (x))