mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-08 02:17:07 +08:00
added unit test directive to switch out parameter storage
This commit is contained in:
committed by
Lorenz Meier
parent
13039f9e69
commit
5cccc01cd4
@@ -0,0 +1,21 @@
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
//#include "gmock/gmock.h"
|
||||
|
||||
#include "uORB/uORB.h"
|
||||
|
||||
/******************************************
|
||||
* uORB stubs (incomplete)
|
||||
*
|
||||
* TODO: use googlemock
|
||||
******************************************/
|
||||
|
||||
orb_advert_t orb_advertise(const struct orb_metadata *meta, const void *data) {
|
||||
return (orb_advert_t)0;
|
||||
}
|
||||
|
||||
int orb_publish(const struct orb_metadata *meta, orb_advert_t handle, const void *data) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user