mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-18 13:55:18 +03:00
moved alignSensors from drv_system to utils updating uvproj to keil5 git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@431 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
17 lines
333 B
C
Executable file
17 lines
333 B
C
Executable file
#pragma once
|
|
|
|
void systemInit(void);
|
|
void delayMicroseconds(uint32_t us);
|
|
void delay(uint32_t ms);
|
|
|
|
uint32_t micros(void);
|
|
uint32_t millis(void);
|
|
|
|
// failure
|
|
void failureMode(uint8_t mode);
|
|
|
|
// bootloader/IAP
|
|
void systemReset(bool toBootloader);
|
|
|
|
// current crystal frequency - 8 or 12MHz
|
|
extern uint32_t hse_value;
|