12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef OSALCONF_H
- #define OSALCONF_H
- #if !defined(OSAL_ST_FREQUENCY) || defined(__DOXYGEN__)
- #define OSAL_ST_FREQUENCY 1000
- #endif
- #if !defined(OSAL_DBG_ENABLE_ASSERTS) || defined(__DOXYGEN__)
- #define OSAL_DBG_ENABLE_ASSERTS FALSE
- #endif
- #if !defined(OSAL_DBG_ENABLE_CHECKS) || defined(__DOXYGEN__)
- #define OSAL_DBG_ENABLE_CHECKS FALSE
- #endif
- #if !defined(OSAL_INIT_HOOK) || defined(__DOXYGEN__)
- #define OSAL_INIT_HOOK() { \
- }
- #endif
- #if !defined(OSAL_IDLE_HOOK) || defined(__DOXYGEN__)
- #define OSAL_IDLE_HOOK() { \
- }
- #endif
- #endif /* OSALCONF_H */
|