| 1234567891011121314151617181920 |
- /**
- * @file nbus_app.h
- *
- * @brief Zakladna kostra nBus protokolu.
- *
- */
- #ifndef __NBUS_APP_H__
- #define __NBUS_APP_H__
- #include "nbus_types.h"
- #include "nbus_impl.h"
- #include "nbus_cmd.h"
- void nbus_init(Peripheral_typeDef *periph);
- void nbus_stack(void);
- #endif
|