This website works better with JavaScript.
Explore
Help
Register
Sign In
zrzk
/
zr-v4
Watch
1
Star
0
Fork
You've already forked zr-v4
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
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.
35574
Commits
10
Branches
0
Tags
227 MiB
Tree:
57804e3118
c415-sdk
celiu-4.0
celiu-4.0.17-rc8
master
mission-4.1.18
zr-sdk-4.1.16
zr-sdk-4.3.1
zr-v4.1.17
zr-v5.0
zr-v5.1
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '57804e3118'
${ noResults }
zr-v4
/
libraries
/
AP_HAL
/
system.cpp
7 lines
88 B
Raw
Normal View
History
Unescape
Escape
AP_HAL: add millis16 to HAL; provide weak implementation This wraps every minute or so - but if you only need to track intervals under ~65 seconds could save RAM
7 years ago
#
include
"system.h"
uint16_t
WEAK
AP_HAL
:
:
millis16
(
)
{
return
millis
(
)
&
0xFFFF
;
}