12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifndef _HAL_LLD_H_
- #define _HAL_LLD_H_
- #define PLATFORM_NAME "templates"
- #if !defined(PLATFORM_MCUCONF)
- #error "Using a wrong mcuconf.h file, PLATFORM_MCUCONF not defined"
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- void hal_lld_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|