rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
Functions
chconf_common.h File Reference

Functions

void irqEnterHook (void)
 
void irqExitHook (void)
 
void contextSwitchHook (void)
 
void threadInitHook (void *tp)
 
void onLockHook (void)
 
void onUnlockHook (void)
 
void boardInit (void)
 Board-specific initialization code.
 
void setPinConfigurationOverrides (void)
 
void setAdcChannelOverrides (void)
 
C void chDbgPanic3 (const char *msg, const char *file, int line)
 

Function Documentation

◆ boardInit()

void boardInit ( void  )

Board-specific initialization code.

Definition at line 31 of file board.c.

31 {
32}

◆ chDbgPanic3()

C void chDbgPanic3 ( const char msg,
const char file,
int  line 
)
extern

Definition at line 12 of file bootloader_stubs.cpp.

12 {
13}

Referenced by _unhandled_exception(), BusFaultVector(), chDbgStackOverflowPanic(), DebugMonitorVector(), and UsageFaultVector().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ contextSwitchHook()

void contextSwitchHook ( void  )

Definition at line 26 of file bootloader_stubs.cpp.

26{}
Here is the call graph for this function:

◆ irqEnterHook()

void irqEnterHook ( void  )

Definition at line 24 of file bootloader_stubs.cpp.

24{}
Here is the call graph for this function:

◆ irqExitHook()

void irqExitHook ( void  )

Definition at line 25 of file bootloader_stubs.cpp.

25{}
Here is the call graph for this function:

◆ onLockHook()

void onLockHook ( void  )

this depends on chdebug.h patch #if CH_DBG_SYSTEM_STATE_CHECK == TRUE -#define _dbg_enter_lock() (ch.dbg.lock_cnt = (cnt_t)1) -#define _dbg_leave_lock() (ch.dbg.lock_cnt = (cnt_t)0) +#define _dbg_enter_lock() {(ch.dbg.lock_cnt = (cnt_t)1); ON_LOCK_HOOK;} +#define _dbg_leave_lock() {ON_UNLOCK_HOOK;(ch.dbg.lock_cnt = (cnt_t)0);} #endif

Definition at line 28 of file bootloader_stubs.cpp.

28{}
Here is the call graph for this function:

◆ onUnlockHook()

void onUnlockHook ( void  )

Definition at line 29 of file bootloader_stubs.cpp.

29{}
Here is the call graph for this function:

◆ setAdcChannelOverrides()

void setAdcChannelOverrides ( void  )

Definition at line 85 of file board_configuration.cpp.

85 {
87}
void addAdcChannelForTrigger(void)

Referenced by configureInputs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setPinConfigurationOverrides()

void setPinConfigurationOverrides ( void  )

Definition at line 19 of file bootloader_stubs.cpp.

19{ }

Referenced by setDefaultBasePins().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ threadInitHook()

void threadInitHook ( void *  tp)

Definition at line 27 of file bootloader_stubs.cpp.

27{}

Go to the source code of this file.