mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
c3a99c8eb0
Use a weak definition to allow subclasses to override
12 lines
179 B
C++
12 lines
179 B
C++
#include "system.h"
|
|
|
|
uint16_t WEAK AP_HAL::millis16()
|
|
{
|
|
return millis() & 0xFFFF;
|
|
}
|
|
|
|
void WEAK AP_HAL::dump_stack_trace()
|
|
{
|
|
// stack dump not available on this platform
|
|
}
|