mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 06:15:16 +03:00
Marked crucial functions inlined into ITCM-RAM explicitly
This commit is contained in:
parent
98fb4d7c66
commit
375bfe3929
2 changed files with 3 additions and 3 deletions
|
@ -835,7 +835,7 @@ bool processRx(timeUs_t currentTimeUs)
|
|||
return true;
|
||||
}
|
||||
|
||||
static void subTaskPidController(timeUs_t currentTimeUs)
|
||||
static FAST_CODE void subTaskPidController(timeUs_t currentTimeUs)
|
||||
{
|
||||
uint32_t startTime = 0;
|
||||
if (debugMode == DEBUG_PIDLOOP) {startTime = micros();}
|
||||
|
@ -951,7 +951,7 @@ static FAST_CODE_NOINLINE void subTaskMainSubprocesses(timeUs_t currentTimeUs)
|
|||
DEBUG_SET(DEBUG_PIDLOOP, 3, micros() - startTime);
|
||||
}
|
||||
|
||||
static void subTaskMotorUpdate(timeUs_t currentTimeUs)
|
||||
static FAST_CODE void subTaskMotorUpdate(timeUs_t currentTimeUs)
|
||||
{
|
||||
uint32_t startTime = 0;
|
||||
if (debugMode == DEBUG_CYCLETIME) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue