2023-11-11 02:07:22 +08:00
|
|
|
#ifndef _MR_LIB_H_
|
|
|
|
|
#define _MR_LIB_H_
|
|
|
|
|
|
2023-12-01 21:59:47 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
2024-01-10 17:13:11 +08:00
|
|
|
#include "mr_api.h"
|
|
|
|
|
#include "mr_config.h"
|
|
|
|
|
#include "mr_def.h"
|
|
|
|
|
#include "mr_service.h"
|
|
|
|
|
#include "components/mr_msh.h"
|
|
|
|
|
#include "device/mr_adc.h"
|
|
|
|
|
#include "device/mr_can.h"
|
|
|
|
|
#include "device/mr_dac.h"
|
|
|
|
|
#include "device/mr_i2c.h"
|
|
|
|
|
#include "device/mr_pin.h"
|
|
|
|
|
#include "device/mr_pwm.h"
|
|
|
|
|
#include "device/mr_serial.h"
|
|
|
|
|
#include "device/mr_soft_i2c.h"
|
|
|
|
|
#include "device/mr_spi.h"
|
|
|
|
|
#include "device/mr_timer.h"
|
2023-12-01 21:59:47 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif /* __cplusplus */
|
2023-11-11 02:07:22 +08:00
|
|
|
|
|
|
|
|
#endif /* _MR_LIB_H_ */
|